From cb518dd1628b24036e71dc62fca425e6d8b84167 Mon Sep 17 00:00:00 2001 From: Katherine Date: Wed, 16 Apr 2025 11:45:08 +0800 Subject: [PATCH] fix: field descriptions display issue in workflow (#6680) --- .../client/src/schema-component/antd/form-item/FormItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/client/src/schema-component/antd/form-item/FormItem.tsx b/packages/core/client/src/schema-component/antd/form-item/FormItem.tsx index 587575386a..9a14c05e88 100644 --- a/packages/core/client/src/schema-component/antd/form-item/FormItem.tsx +++ b/packages/core/client/src/schema-component/antd/form-item/FormItem.tsx @@ -89,7 +89,7 @@ export const FormItem: any = withDynamicSchemaProps( }} /> ) : ( - t(field.description, { ns: NAMESPACE_UI_SCHEMA }) + field.description ); } }, [field.description]);