fix kanban fetch

This commit is contained in:
Yuri Kuznetsov
2024-06-20 15:42:03 +03:00
parent 07035bf8bf
commit 8ab7452859
+2 -2
View File
@@ -1088,13 +1088,13 @@ class KanbanRecordView extends ListRecordView {
this.listenToOnce(view, 'after:save', () => {
if (this.orderDisabled) {
this.collection.fetch();
this.collection.fetch({maxSize: this.collection.maxSize});
return;
}
this.storeGroupOrder(group, view.model.id)
.then(() => this.collection.fetch());
.then(() => this.collection.fetch({maxSize: this.collection.maxSize}));
});
});
}