Don't expand panel on profiles

This commit is contained in:
Zed 2019-09-20 04:04:12 +02:00
parent 5e7f136f82
commit 83a32a67a5
1 changed files with 2 additions and 2 deletions

View File

@ -56,8 +56,8 @@ proc renderSearchTabs*(query: Query): VNode =
a(href=genQueryUrl(q)): text "Users"
proc isPanelOpen(q: Query): bool =
q.filters.len > 0 or q.excludes.len > 0 or
@[q.near, q.until, q.since].anyIt(it.len > 0)
q.fromUser.len == 0 and (q.filters.len > 0 or q.excludes.len > 0 or
@[q.near, q.until, q.since].anyIt(it.len > 0))
proc renderSearchPanel*(query: Query): VNode =
let user = query.fromUser.join(",")