fix issue where readable binding wasn't working correctly with named steps
This commit is contained in:
parent
edb6d95edd
commit
3ab791710c
|
@ -184,7 +184,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
(idx === 0 && automation.trigger?.event === "row:update") ||
|
idx === 0 &&
|
||||||
|
automation.trigger?.event === "row:update" &&
|
||||||
automation.trigger?.event === "row:save"
|
automation.trigger?.event === "row:save"
|
||||||
) {
|
) {
|
||||||
if (name !== "id" && name !== "revision") return `trigger.row.${name}`
|
if (name !== "id" && name !== "revision") return `trigger.row.${name}`
|
||||||
|
|
Loading…
Reference in New Issue