@trudb/tru-common-lib 0.2.463 → 0.2.464
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8286,7 +8286,7 @@ class TruDataChangeParser {
|
|
|
8286
8286
|
update = async (payload) => {
|
|
8287
8287
|
await this.isSaving();
|
|
8288
8288
|
var reloadResults = false;
|
|
8289
|
-
payload.changes.forEach(async (change) => {
|
|
8289
|
+
payload.changes.filter((change) => { return change.modifiedRef.toString() !== this.user.activeUserRef.toString(); }).forEach(async (change) => {
|
|
8290
8290
|
var foundEntities = [];
|
|
8291
8291
|
var localEntity = this.findEntityInCache(change);
|
|
8292
8292
|
var globalEntity = this.findEntityInGlobalCache(change);
|