mirror of
https://github.com/vector-im/element-web.git
synced 2025-11-01 00:31:20 +01:00
Fix Community Panel preference not taking effect until some refreshing
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
359d2fee5f
commit
d5f6d781bb
@ -54,6 +54,8 @@ const LeftPanel = createReactClass({
|
||||
|
||||
this._settingWatchRef = SettingsStore.watchSetting(
|
||||
"breadcrumbs", null, this._onBreadcrumbsChanged);
|
||||
this._settingWatchRef1 = SettingsStore.watchSetting(
|
||||
"TagPanel.enableTagPanel", null, () => this.forceUpdate());
|
||||
|
||||
const useBreadcrumbs = !!SettingsStore.getValue("breadcrumbs");
|
||||
Analytics.setBreadcrumbs(useBreadcrumbs);
|
||||
@ -62,6 +64,7 @@ const LeftPanel = createReactClass({
|
||||
|
||||
componentWillUnmount: function() {
|
||||
SettingsStore.unwatchSetting(this._settingWatchRef);
|
||||
SettingsStore.unwatchSetting(this._settingWatchRef1);
|
||||
},
|
||||
|
||||
shouldComponentUpdate: function(nextProps, nextState) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user