@sumaris-net/ngx-components 0.27.10 → 0.27.11

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.
@@ -20587,8 +20587,9 @@ class AppTable {
20587
20587
  markAsReady(opts) {
20588
20588
  if (this.readySubject.value !== false) {
20589
20589
  this.readySubject.next(false);
20590
- if (!opts || opts.emitEvent !== false) {
20591
- this.markForCheck();
20590
+ // If subclasses implements OnReady
20591
+ if (typeof this['ngOnReady'] === 'function') {
20592
+ this.ngOnReady();
20592
20593
  }
20593
20594
  }
20594
20595
  }