From 8e1d80addd7526ec2fca3101d2b4a642d687ae39 Mon Sep 17 00:00:00 2001 From: andersonid Date: Fri, 3 Oct 2025 13:05:18 -0300 Subject: [PATCH] Fix: use UTC timezone for chart time labels to match Prometheus data --- app/static/index.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/static/index.html b/app/static/index.html index 890c01e..fd8196b 100644 --- a/app/static/index.html +++ b/app/static/index.html @@ -2964,7 +2964,8 @@ } else { return date.toLocaleTimeString('pt-BR', { hour: '2-digit', - minute: '2-digit' + minute: '2-digit', + timeZone: 'UTC' }); } } @@ -3058,7 +3059,8 @@ } else { return date.toLocaleTimeString('pt-BR', { hour: '2-digit', - minute: '2-digit' + minute: '2-digit', + timeZone: 'UTC' }); } }