next-helios-fe 1.8.136 → 1.8.137

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-helios-fe",
3
- "version": "1.8.136",
3
+ "version": "1.8.137",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -660,7 +660,7 @@ export const Table: TableComponentProps = ({
660
660
  });
661
661
 
662
662
  const dataArr = (
663
- options?.toolbar?.pagination?.show !== false
663
+ options?.toolbar?.pagination?.show !== false && !dynamicTable
664
664
  ? filteredData?.slice((page - 1) * maxRow, page * maxRow)
665
665
  : filteredData
666
666
  )?.map((item, index) => {