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/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/table/index.tsx +1 -1
package/package.json
CHANGED
@@ -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) => {
|