Merge branch 'component-binding-refactor' of github.com:Budibase/budibase into component-binding-refactor
This commit is contained in:
commit
b9fb8d6c73
|
@ -31,7 +31,8 @@ module.exports.processors = [
|
||||||
statement = swapStrings(statement, startBraceIdx + lastIdx, 1, ".[")
|
statement = swapStrings(statement, startBraceIdx + lastIdx, 1, ".[")
|
||||||
}
|
}
|
||||||
lastIdx = startBraceIdx + 1
|
lastIdx = startBraceIdx + 1
|
||||||
startBraceIdx = statement.substring(lastIdx + 1).indexOf("[")
|
const nextBraceIdx = statement.substring(lastIdx + 1).indexOf("[")
|
||||||
|
startBraceIdx = nextBraceIdx > 0 ? lastIdx + 1 + nextBraceIdx : -1
|
||||||
}
|
}
|
||||||
return statement
|
return statement
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Reference in New Issue