From 75c32a2f025408681a43f226f281154f99d8d5ac Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Thu, 5 Dec 2019 23:50:19 -0700 Subject: [PATCH] Fix a bug where the icons need to be clicked twice after reload Clicking on the member icon was fine, but clicking on the file panel wouldn't bring it up - it had to be clicked a second time to actually show the panel. --- src/stores/RightPanelStore.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/RightPanelStore.js b/src/stores/RightPanelStore.js index 520a458755..2ad18fe521 100644 --- a/src/stores/RightPanelStore.js +++ b/src/stores/RightPanelStore.js @@ -123,6 +123,7 @@ export default class RightPanelStore extends Store { } else { this._setState({ lastGroupPhase: targetPhase, + showGroupPanel: true, }); } } else { @@ -133,6 +134,7 @@ export default class RightPanelStore extends Store { } else { this._setState({ lastRoomPhase: targetPhase, + showRoomPanel: true, }); } }