@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.
@@ -25687,6 +25687,8 @@
25687
25687
  case 1:
25688
25688
  _e.sent();
25689
25689
  row = this.dataSource.getRow(id);
25690
+ if (!row)
25691
+ return [2 /*return*/, false];
25690
25692
  return [2 /*return*/, this.clickRow(null, row)];
25691
25693
  }
25692
25694
  });
@@ -25712,7 +25714,9 @@
25712
25714
  case 2:
25713
25715
  row = ((_e.sent()) || [])
25714
25716
  .find(function (row) { return _this.equals(row.currentData, data); });
25715
- return [2 /*return*/, row && this.clickRow(null, row)];
25717
+ if (!row)
25718
+ return [2 /*return*/, false];
25719
+ return [2 /*return*/, this.clickRow(null, row)];
25716
25720
  }
25717
25721
  });
25718
25722
  });