@trudb/tru-common-lib 0.2.181 → 0.2.182
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.
|
@@ -6377,9 +6377,8 @@ class TruDataGridClipboard {
|
|
|
6377
6377
|
let rowPropertyValues = [];
|
|
6378
6378
|
let properties = copiedRow.$entity.entityType.getPropertyNames();
|
|
6379
6379
|
let propertiesFilteredByColDef = properties.reduce((acc, propertyName) => {
|
|
6380
|
-
if (
|
|
6380
|
+
if (copiedRow.hasOwnProperty(propertyName))
|
|
6381
6381
|
acc.push(propertyName);
|
|
6382
|
-
}
|
|
6383
6382
|
return acc;
|
|
6384
6383
|
}, []);
|
|
6385
6384
|
propertiesFilteredByColDef
|