@sumaris-net/ngx-components 1.12.9 → 1.12.10

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.
@@ -22193,6 +22193,8 @@ class AppTable {
22193
22193
  return false;
22194
22194
  yield this.waitIdle();
22195
22195
  const row = this.dataSource.getRow(id);
22196
+ if (!row)
22197
+ return false;
22196
22198
  return this.clickRow(null, row);
22197
22199
  });
22198
22200
  }
@@ -22207,7 +22209,9 @@ class AppTable {
22207
22209
  yield this.waitIdle();
22208
22210
  const row = ((yield this.dataSource.getRows()) || [])
22209
22211
  .find(row => this.equals(row.currentData, data));
22210
- return row && this.clickRow(null, row);
22212
+ if (!row)
22213
+ return false;
22214
+ return this.clickRow(null, row);
22211
22215
  });
22212
22216
  }
22213
22217
  clickRow(event, row) {