@trudb/tru-common-lib 0.2.409 → 0.2.411

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.
@@ -6630,7 +6630,7 @@ class TruDataGridClipboard {
6630
6630
  propertyName !== 'Merge_Data_Set' &&
6631
6631
  !propertyName.startsWith('o')) {
6632
6632
  selectedRow.$entity.setProperty(propertyName, copiedRow.$entity.getProperty(propertyName));
6633
- if (selectedRow[propertyName] && typeof selectedRow[propertyName].$.setProperty !== 'undefined')
6633
+ if (selectedRow[propertyName] && Object.getOwnPropertyDescriptor(selectedRow[propertyName], '$')?.set !== undefined)
6634
6634
  selectedRow[propertyName].$ = copiedRow.$entity.getProperty(propertyName);
6635
6635
  }
6636
6636
  });