From 471d5726f6e86bc8bfe7280a06a009c576e801e8 Mon Sep 17 00:00:00 2001 From: jamesread Date: Mon, 4 Mar 2024 23:37:53 +0000 Subject: [PATCH] bugfix: Switch to first dashboard if actions page is empty --- webui.dev/js/marshaller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui.dev/js/marshaller.js b/webui.dev/js/marshaller.js index b79e2a1..c6fa460 100644 --- a/webui.dev/js/marshaller.js +++ b/webui.dev/js/marshaller.js @@ -178,7 +178,7 @@ function marshalDashboardStructureToHtml (json) { } } - if (rootGroup.querySelectorAll('action-button').length > 0 && json.dashboards.length > 0) { + if (rootGroup.querySelectorAll('action-button').length === 0 && json.dashboards.length > 0) { nav.querySelector('li[title="Actions"]').style.display = 'none' showSection(json.dashboards[0].title)