Return null if TagOrderStore is loading

The view should decide the default state.
This commit is contained in:
Luke Barnard 2017-12-11 17:19:29 +00:00
parent 991ea4ebe5
commit aa914098dc
2 changed files with 2 additions and 2 deletions

View file

@ -94,7 +94,7 @@ class TagOrderStore extends Store {
_updateOrderedTags() {
this._setState({
orderedTags: this._state.hasSynced && this._state.hasFetchedJoinedGroups ?
this._state.orderedTagsAccountData || this._state.joinedGroupIds : [],
this._state.orderedTagsAccountData || this._state.joinedGroupIds : null,
});
}