From 708d382a3fc4e19bf2f663e52cacebdae50288e5 Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Wed, 14 Jun 2023 18:43:46 +0100 Subject: [PATCH] accounts: fix hiding of search options header for default sort --- ts/modules/accounts.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ts/modules/accounts.ts b/ts/modules/accounts.ts index 942c829..1705cf0 100644 --- a/ts/modules/accounts.ts +++ b/ts/modules/accounts.ts @@ -1867,6 +1867,7 @@ export class accountsList { this._columns[this._activeSortColumn].ascending = true; this._columns[this._activeSortColumn].hideIcon(); this._sortingByButton.parentElement.classList.add("hidden"); + this.showHideSearchOptionsHeader(); }; this._sortingByButton.parentElement.addEventListener("click", defaultSort);