From 3355ee71924f97ae80cdbcbb0d7f2e9bf20f334c Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Tue, 16 Jul 2024 19:44:54 +0300 Subject: [PATCH] fix --- client/src/views/record/kanban.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/views/record/kanban.js b/client/src/views/record/kanban.js index e9f3ec7842..e37f00d293 100644 --- a/client/src/views/record/kanban.js +++ b/client/src/views/record/kanban.js @@ -385,7 +385,7 @@ class KanbanRecordView extends ListRecordView { } if ('canCreate' in this.options) { - this.isCreatable = this.options.isCreatable; + this.isCreatable = this.options.canCreate; } else { this.isCreatable = this.statusFieldIsEditable && this.getAcl().check(this.entityType, 'create'); }