mirror of https://github.com/langgenius/dify.git
chore: iteratino input support bool list
This commit is contained in:
parent
04d2b0775d
commit
d5b99610fc
|
|
@ -25,7 +25,7 @@ const useConfig = (id: string, payload: IterationNodeType) => {
|
|||
const { inputs, setInputs } = useNodeCrud<IterationNodeType>(id, payload)
|
||||
|
||||
const filterInputVar = useCallback((varPayload: Var) => {
|
||||
return [VarType.array, VarType.arrayString, VarType.arrayNumber, VarType.arrayObject, VarType.arrayFile].includes(varPayload.type)
|
||||
return [VarType.array, VarType.arrayString, VarType.arrayBoolean, VarType.arrayNumber, VarType.arrayObject, VarType.arrayFile].includes(varPayload.type)
|
||||
}, [])
|
||||
|
||||
const handleInputChange = useCallback((input: ValueSelector | string, _varKindType: VarKindType, varInfo?: Var) => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue