mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Fixes white navbar showing up at first launch
This commit is contained in:
parent
0fd834ccd8
commit
b7709b13f4
2 changed files with 3 additions and 2 deletions
|
|
@ -583,8 +583,9 @@ function page_utils.print_menubar()
|
|||
end
|
||||
|
||||
local navbar_style = _POST["toggle_theme"] or ntop.getPref("ntopng.user." .. _SESSION["user"] .. ".theme")
|
||||
tprint(navbar_style)
|
||||
|
||||
if ((navbar_style == nil) or (navbar_style == "white")) then
|
||||
if ((navbar_style == nil) or (navbar_style == "white") or (navbar_style == "")) then
|
||||
navbar_style = "default"
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue