From 29d29f87319a96d6e22bc77e37e30d8d21cb05d3 Mon Sep 17 00:00:00 2001 From: Joel Date: Wed, 4 Dec 2024 11:17:15 +0800 Subject: [PATCH] fix: can not chosse const --- .../workflow/nodes/tool/components/input-var-list.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/app/components/workflow/nodes/tool/components/input-var-list.tsx b/web/app/components/workflow/nodes/tool/components/input-var-list.tsx index 722ef1ccc2..2cc1a0ee50 100644 --- a/web/app/components/workflow/nodes/tool/components/input-var-list.tsx +++ b/web/app/components/workflow/nodes/tool/components/input-var-list.tsx @@ -170,7 +170,8 @@ const InputVarList: FC = ({ value={varInput?.type === VarKindType.constant ? (varInput?.value || '') : (varInput?.value || [])} onChange={handleNotMixedTypeChange(variable)} onOpen={handleOpen(index)} - defaultVarKindType={VarKindType.variable} + defaultVarKindType={isNumber ? VarKindType.constant : VarKindType.variable} + isSupportConstantValue={isSupportConstantValue} filterVar={isNumber ? filterVar : undefined} availableVars={isSelect ? availableVars : undefined} schema={schema}