@trudb/tru-common-lib 0.1.817 → 0.1.818

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.
@@ -6989,7 +6989,7 @@ class TruDataGrid {
6989
6989
  this.customToolbarComponents.forEach((componentName) => {
6990
6990
  let toolbarContainerRef = this.customToolbarContainer.createComponent(this.componentLookup.get(componentName));
6991
6991
  toolbarContainerRef.instance.tableName = this.config.tableName;
6992
- toolbarContainerRef.instance.getEntities = () => { return this.rowData.filter((row) => { return row.$entity; }); };
6992
+ toolbarContainerRef.instance.getEntities = () => { return this.rowData.map((row) => { return row.$entity; }); };
6993
6993
  });
6994
6994
  };
6995
6995
  defaultColDef = {