From 4d2ad549db1157f3699122d596d3d44db6f9a9c4 Mon Sep 17 00:00:00 2001 From: Anton Roslund Date: Sun, 21 Sep 2025 19:19:46 +0200 Subject: [PATCH] MediumFast on top --- src/public/index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/public/index.html b/src/public/index.html index b6abca3..92e2571 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -3562,6 +3562,8 @@ tagName: node.node_id, // we want to show online nodes above offline, but without needing to use separate layer groups //zIndexOffset: nodeHasUplinkedToMqttRecently ? 1000 : -1000, + // show mediumfast nodes above longfast nodes + zIndexOffset: node.channel_id == "MediumFast" ? 1000 : -1000, }).on('click', function(event) { // close tooltip on click to prevent tooltip and popup showing at same time event.target.closeTooltip();