We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0487a6 commit daae0c1Copy full SHA for daae0c1
1 file changed
lib/public/models/OverviewModel.js
@@ -92,7 +92,9 @@ export class OverviewPageModel extends Observable {
92
Success: ({ items, totalCount }) => {
93
const concatenateWith = keepExisting ? this.items.match({
94
Success: (payload) => payload,
95
- Other: () => [],
+ Loading: () => [],
96
+ NotAsked: () => [],
97
+ Failure: () => [],
98
}) : [];
99
this._pagination.itemsCount = totalCount;
100
this._observableItems.setCurrent(RemoteData.success([...concatenateWith, ...this.processItems(items)]));
0 commit comments