Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit f705796

Browse files
committed
fixing errors
1 parent 4baf3b8 commit f705796

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/stores/GroupFilterOrderStore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class GroupFilterOrderStore extends Store {
4141

4242
// Initialise state
4343
this._state = Object.assign({}, INITIAL_STATE);
44-
SettingsStore.monitorSetting("GroupFilterPanel.enableGroupFilterPanel", null);
44+
SettingsStore.monitorSetting("TagPanel.enableTagPanel", null);
4545
}
4646

4747
_setState(newState) {
@@ -190,7 +190,7 @@ class GroupFilterOrderStore extends Store {
190190
break;
191191
}
192192
case 'setting_updated':
193-
if (payload.settingName === 'GroupFilterPanel.enableGroupFilterPanel' && !payload.newValue) {
193+
if (payload.settingName === 'TagPanel.enableTagPanel' && !payload.newValue) {
194194
this._setState({
195195
selectedTags: [],
196196
});

0 commit comments

Comments
 (0)