From 1614335bb005ee1b9df4c6f63725bc505dfb4588 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sun, 10 Jan 2021 16:06:00 -0500 Subject: Fix profile panel not being able to be closed due to hidden sidebar (#1220) --- ext/mixed/js/display-profile-selection.js | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/mixed/js') diff --git a/ext/mixed/js/display-profile-selection.js b/ext/mixed/js/display-profile-selection.js index 357a2a85..0a44392e 100644 --- a/ext/mixed/js/display-profile-selection.js +++ b/ext/mixed/js/display-profile-selection.js @@ -59,6 +59,7 @@ class DisplayProfileSelection { _setProfilePanelVisible(visible) { this._profilePanel.setVisible(visible); this._profileButton.classList.toggle('sidebar-button-highlight', visible); + document.documentElement.dataset.profilePanelVisible = `${visible}`; if (visible && this._profileListNeedsUpdate) { this._updateProfileList(); } -- cgit v1.2.3