mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-27 03:00:28 +03:00
Update index.ts
This commit is contained in:
@@ -561,7 +561,10 @@ export const getVariableValue = (
|
||||
}
|
||||
if (variableObj) {
|
||||
variableObj = get(variableObj, variableFullPathParts.slice(3))
|
||||
variableValue = handleEscapeCharacters(JSON.stringify(variableObj), false)
|
||||
variableValue = handleEscapeCharacters(
|
||||
typeof variableObj === 'object' ? JSON.stringify(variableObj) : variableObj,
|
||||
false
|
||||
)
|
||||
}
|
||||
}
|
||||
if (isAcceptVariable) {
|
||||
|
||||
Reference in New Issue
Block a user