diff --git a/nodes/config/ui_base.html b/nodes/config/ui_base.html index e9745f5ed..49c55b763 100644 --- a/nodes/config/ui_base.html +++ b/nodes/config/ui_base.html @@ -1306,7 +1306,7 @@ } function addSidebarTab (label, id, tabs, sidebar) { - $(`
  • ${label}
  • `).appendTo(tabs) + $(`
  • ${label}
  • `).appendTo(tabs) // Add in Tab Content const content = $(`
    `).appendTo(sidebar) @@ -1347,7 +1347,7 @@ if (plugin.tabs) { plugin.tabs.forEach(tab => { // add tab to sidebar - const container = addSidebarTab('FF Auth', 'ff-auth', ulDashboardTabs, sidebar) + const container = addSidebarTab(tab.label, tab.id, ulDashboardTabs, sidebar) container.hide() tab.init(base, container) })