Fix _groupFilterOrderStoreToken naming
This commit is contained in:
@@ -44,7 +44,7 @@ class GroupFilterPanel extends React.Component {
|
|||||||
this.context.on("Group.myMembership", this._onGroupMyMembership);
|
this.context.on("Group.myMembership", this._onGroupMyMembership);
|
||||||
this.context.on("sync", this._onClientSync);
|
this.context.on("sync", this._onClientSync);
|
||||||
|
|
||||||
this._GroupFilterOrderStoreToken = GroupFilterOrderStore.addListener(() => {
|
this._groupFilterOrderStoreToken = GroupFilterOrderStore.addListener(() => {
|
||||||
if (this.unmounted) {
|
if (this.unmounted) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -61,8 +61,8 @@ class GroupFilterPanel extends React.Component {
|
|||||||
this.unmounted = true;
|
this.unmounted = true;
|
||||||
this.context.removeListener("Group.myMembership", this._onGroupMyMembership);
|
this.context.removeListener("Group.myMembership", this._onGroupMyMembership);
|
||||||
this.context.removeListener("sync", this._onClientSync);
|
this.context.removeListener("sync", this._onClientSync);
|
||||||
if (this._GroupFilterOrderStoreToken) {
|
if (this._groupFilterOrderStoreToken) {
|
||||||
this._GroupFilterOrderStoreToken.remove();
|
this._groupFilterOrderStoreToken.remove();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user