We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ef08bc1 + 9a27d8b commit da76a73Copy full SHA for da76a73
src/components/dtg-table/dtg-table.jsx
@@ -404,7 +404,7 @@ export default function DtgTable({
404
!pivotSelected?.pivotValue &&
405
!rawData?.pivotApplied
406
) {
407
- if (tableData?.meta['total-count'] > REACT_TABLE_MAX_NON_PAGINATED_SIZE) {
+ if (tableData?.meta['total-count'] <= REACT_TABLE_MAX_NON_PAGINATED_SIZE) {
408
// data with current date range < 20000
409
if (!(reactTableData?.pivotApplied && !updatedData(tableData.data, reactTableData?.data.slice(0, itemsPerPage)))) {
410
if (
0 commit comments