Content server FTS: Fix page header bar not visible

This commit is contained in:
Kovid Goyal 2022-12-26 17:29:49 +05:30
parent 5c30cc142a
commit 8e38105c5a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -416,10 +416,9 @@ def show_panel(visible):
if c:
x = c.parentNode.firstChild
while x:
if x.nodeType is 1 and x is not c:
x.style.display = 'none'
if x.nodeType is 1 and x.dataset.component:
x.style.display = 'block' if x is c else 'none'
x = x.nextSibling
c.style.display = 'block'
def show_search_panel():