fix: import workflow errors (#6937)

This commit is contained in:
crazywoola
2024-08-04 14:34:39 +08:00
committed by GitHub
parent dff3f41ef6
commit 79715345ef

View File

@@ -404,12 +404,12 @@ export const getVarType = ({
else { else {
(valueSelector as ValueSelector).slice(1).forEach((key, i) => { (valueSelector as ValueSelector).slice(1).forEach((key, i) => {
const isLast = i === valueSelector.length - 2 const isLast = i === valueSelector.length - 2
curr = curr.find((v: any) => v.variable === key) curr = curr?.find((v: any) => v.variable === key)
if (isLast) { if (isLast) {
type = curr?.type type = curr?.type
} }
else { else {
if (curr.type === VarType.object) if (curr?.type === VarType.object)
curr = curr.children curr = curr.children
} }
}) })