浏览代码

bugfix: Switch to first dashboard if actions page is empty

jamesread 2 年之前
父节点
当前提交
471d5726f6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      webui.dev/js/marshaller.js

+ 1 - 1
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)