@trudb/tru-common-lib 0.2.402 → 0.2.404
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.
|
@@ -6629,7 +6629,7 @@ class TruDataGridClipboard {
|
|
|
6629
6629
|
propertyName !== 'rowver' &&
|
|
6630
6630
|
propertyName !== 'Merge_Data_Set')
|
|
6631
6631
|
if (propertyName.startsWith('o') && !Array.isArray(copiedRow.$entity.getProperty(propertyName)))
|
|
6632
|
-
selectedRow.$entity.
|
|
6632
|
+
selectedRow.$entity[propertyName].Ref = copiedRow.$entity.getProperty(propertyName).Ref;
|
|
6633
6633
|
else if (!propertyName.startsWith('o'))
|
|
6634
6634
|
selectedRow.$entity.setProperty(propertyName, copiedRow.$entity.getProperty(propertyName));
|
|
6635
6635
|
});
|
|
@@ -6658,7 +6658,7 @@ class TruDataGridClipboard {
|
|
|
6658
6658
|
.forEach((propertyName) => {
|
|
6659
6659
|
if (typeof newEntity.setProperty !== 'undefined') {
|
|
6660
6660
|
if (propertyName.startsWith('o') && !Array.isArray(row.$entity.getProperty(propertyName)))
|
|
6661
|
-
newEntity.
|
|
6661
|
+
newEntity[propertyName].Ref = row.$entity.getProperty(propertyName).Ref;
|
|
6662
6662
|
else if (!propertyName.startsWith('o'))
|
|
6663
6663
|
newEntity.setProperty(propertyName, row.$entity.getProperty(propertyName));
|
|
6664
6664
|
}
|