@trudb/tru-common-lib 0.2.114 → 0.2.116

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.
@@ -5981,8 +5981,8 @@ class TruDataGridClipboard {
5981
5981
  let properties = copiedRow.entityType.getPropertyNames();
5982
5982
  properties
5983
5983
  .forEach((propertyName) => {
5984
- if (typeof selectedRow.$entity.setProperty !== 'undefined')
5985
- selectedRow.$entity.setProperty(propertyName, copiedRow.$entity.getProperty(propertyName));
5984
+ if (typeof selectedRow.$entity.setProperty !== 'undefined' && propertyName !== config.tableName + 'Ref')
5985
+ selectedRow.$entity.setProperty(propertyName, copiedRow.getProperty(propertyName));
5986
5986
  });
5987
5987
  });
5988
5988
  });