@trudb/tru-common-lib 0.2.321 → 0.2.322
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.
|
@@ -7836,9 +7836,9 @@ class TruDataGrid {
|
|
|
7836
7836
|
return;
|
|
7837
7837
|
let entity;
|
|
7838
7838
|
if (this.gridType === TruDataGridTypes.DetailManyToMany)
|
|
7839
|
-
entity = this.dataContext.entityAccess().
|
|
7839
|
+
entity = this.dataContext.entityAccess().searchByRefArrayCacheOnly(this.config.resultConfig.entityManyToManyType, this.latestSetupQuery, [changeArgs.entity.Ref]);
|
|
7840
7840
|
else
|
|
7841
|
-
entity = this.dataContext.entityAccess().
|
|
7841
|
+
entity = this.dataContext.entityAccess().searchByRefArrayCacheOnly(this.config.resultConfig.entityType, this.latestSetupQuery, [changeArgs.entity.Ref]);
|
|
7842
7842
|
if (entity) {
|
|
7843
7843
|
let entityAlreadyInGrid = null;
|
|
7844
7844
|
this.api?.forEachNodeAfterFilter((rowNode) => {
|