owl-cli 6.27.0 → 6.29.0
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.
|
@@ -429,7 +429,7 @@ function merge(oldObj,newObj,permissions,orgId){
|
|
|
429
429
|
var ef_section_permissions = null;
|
|
430
430
|
var ef_field_permissions = null;
|
|
431
431
|
var ef_table_permissions = null;
|
|
432
|
-
if (
|
|
432
|
+
if (oldObj._orgId === orgId) {
|
|
433
433
|
ef_section_permissions = section_permissions.same_org;
|
|
434
434
|
ef_field_permissions = field_permissions.same_org;
|
|
435
435
|
ef_table_permissions = table_permissions.same_org;
|
|
@@ -509,6 +509,7 @@ function merge(oldObj,newObj,permissions,orgId){
|
|
|
509
509
|
}
|
|
510
510
|
}
|
|
511
511
|
}
|
|
512
|
+
return newObj;
|
|
512
513
|
|
|
513
514
|
}
|
|
514
515
|
|