From 8280077f9618cda0ddc85de461eb743ceb3b01c7 Mon Sep 17 00:00:00 2001 From: katherinehhh Date: Mon, 13 May 2024 16:54:03 +0800 Subject: [PATCH] fix: create kanban block report error (#4332) --- .../plugin-kanban/src/client/CreateAndSelectSort/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugins/@nocobase/plugin-kanban/src/client/CreateAndSelectSort/index.tsx b/packages/plugins/@nocobase/plugin-kanban/src/client/CreateAndSelectSort/index.tsx index 0794c17a64..cce2efb21b 100644 --- a/packages/plugins/@nocobase/plugin-kanban/src/client/CreateAndSelectSort/index.tsx +++ b/packages/plugins/@nocobase/plugin-kanban/src/client/CreateAndSelectSort/index.tsx @@ -38,7 +38,7 @@ export const CreateAndSelectSort = (props) => { }); const ScopekeyDescription = ({ scopeKey }) => { const field = scopeKey && collectionFields.find((v) => v.name === scopeKey); - const result = scopeKey && compile(field['uiSchema']?.['title']); + const result = scopeKey && compile(field?.['uiSchema']?.['title']); return ( (