From e6e6f1ec55daebf33b9a45e06f44b2d4063d89a5 Mon Sep 17 00:00:00 2001 From: 1998-felix Date: Mon, 18 Mar 2024 12:45:19 +0300 Subject: [PATCH] fix: Unify close button behaviour Signed-off-by: 1998-felix --- ui/web/templates/charts/horizontalbarchartmodal.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/web/templates/charts/horizontalbarchartmodal.html b/ui/web/templates/charts/horizontalbarchartmodal.html index ea005a9b..5191e335 100644 --- a/ui/web/templates/charts/horizontalbarchartmodal.html +++ b/ui/web/templates/charts/horizontalbarchartmodal.html @@ -18,7 +18,7 @@
Data Source
case "startTime": case "stopTime": const inputDate = new Date(pair[1]); - chartData[pair[0]] = inputDate.getTime() * 1e6; + chartData[pair[0]] = inputDate.getTime(); break; case "channel": channels.push(pair[1]);