@trudb/tru-common-lib 0.2.98 → 0.2.99
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.
|
@@ -3611,7 +3611,7 @@ class TruCloneView extends TruViewBase {
|
|
|
3611
3611
|
return false;
|
|
3612
3612
|
if (propertyName.startsWith('o'))
|
|
3613
3613
|
return false;
|
|
3614
|
-
let property = this.modelPropertyLookup.lookup.get(propertyName);
|
|
3614
|
+
let property = this.modelPropertyLookup.lookup.get(tableName + '.' + propertyName);
|
|
3615
3615
|
if (property && property.excludeFromCloning)
|
|
3616
3616
|
return false;
|
|
3617
3617
|
if (this.ignorePropertyList.some(function (propertyToIgnore) { return propertyToIgnore === propertyName; })) {
|