Rename concurrencyToken to concurrency

This commit is contained in:
2020-05-13 19:55:50 +00:00
parent c9b5df20af
commit 6e41dad1b0
10 changed files with 26 additions and 26 deletions

View File

@@ -349,7 +349,7 @@ export default {
return new Promise(function upsertDataToServer(resolve, reject) {
//determine if this is a new or existing record
let fetchOptions = undefined;
if (data.concurrencyToken) {
if (data.concurrency) {
//has concurrency token, so this is a PUT as it's updating an existing record
fetchOptions = that.fetchPutOptions(data);
} else {