Browse Source

Merge pull request #3038 from Budibase/fix/data-section-issues

Add check for missing _rev
pull/3072/head
Peter Clement 5 years ago
committed by GitHub
parent
commit
07264da6de
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/server/src/utilities/rowProcessor/index.js

2
packages/server/src/utilities/rowProcessor/index.js

@ -201,7 +201,7 @@ exports.inputProcessing = (
}
}
if (!clonedRow._id) {
if (!clonedRow._id || !clonedRow._rev) {
clonedRow._id = row._id
clonedRow._rev = row._rev
}

Loading…
Cancel
Save