From 8ab7452859915c3ad9831c4a447d2ea4adc66d4e Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 20 Jun 2024 15:42:03 +0300 Subject: [PATCH] fix kanban fetch --- client/src/views/record/kanban.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/views/record/kanban.js b/client/src/views/record/kanban.js index eac5b83f5b..9162ee8195 100644 --- a/client/src/views/record/kanban.js +++ b/client/src/views/record/kanban.js @@ -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})); }); }); }