@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.
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +3 -2
- package/fesm2015/annalib-anna-core.mjs +2 -1
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +2 -1
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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;
|