Browse Source

RevId should be optional for automation delete

pull/5498/head
Mel O'Hagan 4 years ago
parent
commit
ec235a4e5c
  1. 2
      packages/server/src/automations/steps/deleteRow.js

2
packages/server/src/automations/steps/deleteRow.js

@ -49,7 +49,7 @@ exports.definition = {
}
exports.run = async function ({ inputs, appId, emitter }) {
if (inputs.id == null || inputs.revision == null) {
if (inputs.id == null) {
return {
success: false,
response: {

Loading…
Cancel
Save