@esfaenza/es-table 11.2.100 → 11.2.101

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.
@@ -2114,7 +2114,7 @@
2114
2114
  // Poi per tutti i valori dopo compresi fra la pagina - 1 e la pagina
2115
2115
  for (var i = ((this.est.arraymodePage - 1) * this.est.ArraymodeItemsPerPage); i < this.est.arraymodePage * this.est.ArraymodeItemsPerPage; i++) {
2116
2116
  if (i <= items.length - 1)
2117
- tmpItems.push(items);
2117
+ tmpItems.push(items[i]);
2118
2118
  }
2119
2119
  return tmpItems;
2120
2120
  };