Skip to content

Commit daae0c1

Browse files
authored
remove clause 'other' (#1335)
1 parent e0487a6 commit daae0c1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

lib/public/models/OverviewModel.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ export class OverviewPageModel extends Observable {
9292
Success: ({ items, totalCount }) => {
9393
const concatenateWith = keepExisting ? this.items.match({
9494
Success: (payload) => payload,
95-
Other: () => [],
95+
Loading: () => [],
96+
NotAsked: () => [],
97+
Failure: () => [],
9698
}) : [];
9799
this._pagination.itemsCount = totalCount;
98100
this._observableItems.setCurrent(RemoteData.success([...concatenateWith, ...this.processItems(items)]));

0 commit comments

Comments
 (0)