1
0
Fork 0
mirror of synced 2024-09-20 19:33:10 +12:00
This commit is contained in:
Adria Navarro 2024-07-19 16:49:30 +02:00
parent 6c67aaf3a0
commit b9443906dc

View file

@ -308,7 +308,9 @@ const automationActions = store => ({
if (!automation) { if (!automation) {
return return
} }
delete newAutomation.definition.stepNames[blockId] if (newAutomation.definition.stepNames) {
delete newAutomation.definition.stepNames[blockId]
}
await store.actions.save(newAutomation) await store.actions.save(newAutomation)
}, },