@annalib/anna-core 22.1.30 → 22.1.32

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.
@@ -3639,7 +3639,8 @@ class AnnaNonEditableGenericTableComponent {
3639
3639
  }
3640
3640
  // let actualTableHeight = heightLeftForTable - ((heightLeftForTable - headerHeight - rowHeight) % rowHeight);
3641
3641
  this.gtDimension.tableHeight = `${actualTableHeight}px`;
3642
- this.numberOfSkeletonRows = Array(this.maximumRowsWhichCanBeRenderedWithoutScroll).fill(0);
3642
+ this.numberOfSkeletonRows = this.maximumRowsWhichCanBeRenderedWithoutScroll ? Array(this.maximumRowsWhichCanBeRenderedWithoutScroll).fill(0)
3643
+ : Array(5).fill(0);
3643
3644
  }
3644
3645
  trackByFn(index) {
3645
3646
  return index;