From b348a415d2f88f868d137a57ca896e2a8093f74e Mon Sep 17 00:00:00 2001 From: mytharcher Date: Thu, 24 Oct 2024 10:44:28 +0800 Subject: [PATCH] fix(plugin-workflow): fix calculation node --- .../core/client/src/schema-component/antd/variable/TextArea.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/client/src/schema-component/antd/variable/TextArea.tsx b/packages/core/client/src/schema-component/antd/variable/TextArea.tsx index 1802b7b8be..46041fa50f 100644 --- a/packages/core/client/src/schema-component/antd/variable/TextArea.tsx +++ b/packages/core/client/src/schema-component/antd/variable/TextArea.tsx @@ -212,7 +212,7 @@ const defaultFieldNames = { value: 'value', label: 'label' }; export function TextArea(props) { const { wrapSSR, hashId, componentCls } = useStyles(); - const { value = '', scope, onChange, changeOnSelect, style } = props; + const { value = '', scope, onChange, changeOnSelect, style, fieldNames } = props; const inputRef = useRef(null); const [options, setOptions] = useState([]); const form = useForm();