fix(plugin-workflow): fix calculation node

This commit is contained in:
mytharcher 2024-10-24 10:44:28 +08:00
parent faaaf2e6d3
commit b348a415d2

View File

@ -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<HTMLDivElement>(null);
const [options, setOptions] = useState([]);
const form = useForm();