From 1dd9040d2449fe67c0eb32a2534b7b800a237511 Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Tue, 2 Dec 2025 20:02:32 +1100 Subject: [PATCH] Render duration as ms not s --- templates/dashboard/home.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/dashboard/home.html b/templates/dashboard/home.html index a22939e..91b577b 100644 --- a/templates/dashboard/home.html +++ b/templates/dashboard/home.html @@ -89,7 +89,7 @@ {% set avg_time = ((stats.avg_timer_execution_time or 0) + (stats.avg_http_execution_time or 0)) / 2 %}
-

{{ "%.2f"|format(avg_time) }}s

+

{{ "%.2f"|format(avg_time) }}ms

@@ -193,7 +193,7 @@ {% endif %} {{ - "%.2f"|format(activity.execution_time or 0) }}s + "%.2f"|format(activity.execution_time or 0) }}ms {{ activity.invocation_time.strftime('%Y-%m-%d %H:%M:%S') }}