chore: xxx

This commit is contained in:
Joel 2024-03-28 16:48:54 +08:00
parent 615178dafa
commit 4934a655dd
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ const useAvailableVarList = (nodeId: string, {
const isChatMode = useIsChatMode()
const availableNodes = onlyLeafNodeVar ? getTreeLeafNodes(nodeId) : getBeforeNodesInSameBranch(nodeId)
const availableVars = toNodeOutputVars(availableNodes, isChatMode, filterVar).map(item => item.vars)
const availableVars = toNodeOutputVars(availableNodes, isChatMode, filterVar)
return availableVars
}