1
0
Fork 0
mirror of synced 2024-09-03 11:11:49 +12:00

Merge pull request #10948 from Budibase/fix/add-automation-step

Fix issue with adding automation step
This commit is contained in:
Peter Clement 2023-06-20 10:44:41 +01:00 committed by GitHub
commit 7426bbbbda

View file

@ -309,7 +309,7 @@
} }
function canShowField(key, value) { function canShowField(key, value) {
const dependsOn = value.dependsOn const dependsOn = value?.dependsOn
return !dependsOn || !!inputData[dependsOn] return !dependsOn || !!inputData[dependsOn]
} }