fix case where trigger fields could be undefined
This commit is contained in:
parent
58fedd10f5
commit
84b2a36fda
|
@ -157,6 +157,7 @@
|
|||
let bindings = []
|
||||
let loopBlockCount = 0
|
||||
const addBinding = (name, value, icon, idx, isLoopBlock, bindingName) => {
|
||||
if (!name) return
|
||||
const runtimeBinding = determineRuntimeBinding(name, idx, isLoopBlock)
|
||||
const categoryName = determineCategoryName(idx, isLoopBlock, bindingName)
|
||||
|
||||
|
@ -291,7 +292,7 @@
|
|||
loopBlockCount++
|
||||
continue
|
||||
}
|
||||
|
||||
console.log(schema)
|
||||
Object.entries(schema).forEach(([name, value]) =>
|
||||
addBinding(name, value, icon, idx, isLoopBlock, bindingName)
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue