@annalib/anna-core 10.0.24 → 10.0.25

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.
@@ -1849,7 +1849,7 @@ class AnnaNonEditableGenericTableComponent {
1849
1849
  let marginFromBottom = this.gtDimension.marginFromBottom;
1850
1850
  let heightLeftForTable = viewportHeight - dataOnTopHeight - marginFromBottom;
1851
1851
  this.maximumRowsWhichCanBeRenderedWithoutScroll =
1852
- Math.floor((heightLeftForTable - headerHeight - rowHeight) / rowHeight) + 1;
1852
+ Math.ceil((heightLeftForTable - headerHeight - rowHeight) / rowHeight) + 1;
1853
1853
  // let actualTableHeight = heightLeftForTable - ((heightLeftForTable - headerHeight - rowHeight) % rowHeight);
1854
1854
  let actualTableHeight = viewportHeight - dataOnTopHeight - marginFromBottom;
1855
1855
  this.gtDimension.tableHeight = `${actualTableHeight}px`;
@@ -2368,8 +2368,7 @@ class AnnaNonEditableGenericTableComponent {
2368
2368
  this.selectedFromTime = ["-", "-", "-"];
2369
2369
  this.selectedToTime = ["-", "-", "-"];
2370
2370
  }
2371
- if (this.gtGeneralConfig.component === "SPOTDETAILS" || this.gtGeneralConfig.component === "EXCLUDEINVENTORYPOPUP"
2372
- || this.gtGeneralConfig.component === "ACTIVITYLOG" || this.gtGeneralConfig.component === "NOTIFICATIONS") {
2371
+ if (this.gtGeneralConfig.component === "SPOTDETAILS" || this.gtGeneralConfig.component === "EXCLUDEINVENTORYPOPUP" || this.gtGeneralConfig.component === "ACTIVITYLOG") {
2373
2372
  this.setTimeFilterDataForComponentsOtherThanRatingsPage(header);
2374
2373
  }
2375
2374
  else if (this.gtGeneralConfig.component === "RATING") {
@@ -3173,8 +3172,7 @@ class AnnaNonEditableGenericTableComponent {
3173
3172
  };
3174
3173
  if (this.gtGeneralConfig.component === "SPOTDETAILS" ||
3175
3174
  this.gtGeneralConfig.component === "EXCLUDEINVENTORYPOPUP" ||
3176
- this.gtGeneralConfig.component === "ACTIVITYLOG" ||
3177
- this.gtGeneralConfig.component === "NOTIFICATIONS") {
3175
+ this.gtGeneralConfig.component === "ACTIVITYLOG") {
3178
3176
  let includeMulti = this.clonedTableData.findIndex((obj) => obj[key] == "<multi>") !=
3179
3177
  -1;
3180
3178
  let includeZero = this.clonedTableData.findIndex((obj) => obj[key] == "0") != -1;