@one-paragon/angular-utilities 2.0.3 → 2.0.4

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.
@@ -5279,9 +5279,6 @@ class VirtualScrollContainer {
5279
5279
  const minAmountOfRows = virtualScrollOptions?.amountOfVisibleItems || this.defaultOptions.amountOfVisibleItems;
5280
5280
  const amountOfVisibleItems = Math.min(Math.max(amountOfRowsThatWillFit, minAmountOfRows), this.$dataLength());
5281
5281
  let height = (rowHeight * amountOfVisibleItems);
5282
- if (height < available) {
5283
- height += 22;
5284
- }
5285
5282
  height += (footerHeight + headerHeight);
5286
5283
  this.setHeight(height, el);
5287
5284
  }