Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-cox committed Nov 27, 2020
1 parent b72bd2e commit e735ea2
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ import {
ListView,
SetListViewAction,
} from '../../../../../store/src/actions/list.actions';
import { ResetPaginationSortFilter, SetClientFilterKey, SetPage } from '../../../../../store/src/actions/pagination.actions';
import {
ResetPagination,
ResetPaginationSortFilter,
SetClientFilterKey,
SetPage,
} from '../../../../../store/src/actions/pagination.actions';
import { GeneralAppState } from '../../../../../store/src/app-state';
import { entityCatalog } from '../../../../../store/src/entity-catalog/entity-catalog';
import { EntityCatalogEntityConfig } from '../../../../../store/src/entity-catalog/entity-catalog.types';
Expand Down Expand Up @@ -611,6 +616,10 @@ export class ListComponent<T> implements OnInit, OnChanges, OnDestroy, AfterView
manager.selectItem('')
})
})
if (!this.config.isLocal) {
// TODO: RC Fixes space routes, breaks app wall!!
this.store.dispatch(new ResetPagination(pAction, pAction.paginationKey));
}
}

updateListView(listView: ListView) {
Expand Down

0 comments on commit e735ea2

Please sign in to comment.