From 18c3ccb7ccf2be56e8c3a2f046bb1fbca0dab7c7 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Wed, 4 Sep 2024 18:01:54 +1200 Subject: [PATCH] add button to minimise position history overlay --- src/public/index.html | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/src/public/index.html b/src/public/index.html index e0a7e38..1569279 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -1552,12 +1552,24 @@
-
+
+
{{ selectedNodeToShowPositionHistory.short_name }} Position History
-
+ -
+
@@ -1789,6 +1801,7 @@ deviceMetricsTimeRange: "3d", powerMetricsTimeRange: "3d", + isPositionHistoryModalExpanded: true, positionHistoryDateTimeFrom: null, positionHistoryDateTimeTo: null, selectedNodePositionHistory: [], @@ -2448,6 +2461,7 @@ // update ui this.selectedNode = null; this.selectedNodeToShowPositionHistory = node; + this.isPositionHistoryModalExpanded = true; // close node info tooltip as position history shows under it window.closeAllTooltips();