1
0
Fork 0
mirror of synced 2024-10-05 12:34:50 +13:00

fix issue with adding automation step

This commit is contained in:
Peter Clement 2023-06-19 11:43:00 +01:00
parent ddfc8f2870
commit 832ee22c0a

View file

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