mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 00:48:25 +00:00
rolling back to previous logic for displaying total count with respect to serverside pagination (#7625)
This commit is contained in:
parent
ddadf1a552
commit
d656de65ec
1 changed files with 2 additions and 1 deletions
|
|
@ -1528,7 +1528,8 @@ export function Table({
|
|||
) : (
|
||||
!loadingState && (
|
||||
<span data-cy={`footer-number-of-records`} className="font-weight-500 color-slate11">
|
||||
{`${globalFilteredRows.length} Records`}
|
||||
{clientSidePagination && !serverSidePagination && `${globalFilteredRows.length} Records`}
|
||||
{serverSidePagination && totalRecords ? `${totalRecords} Records` : ''}
|
||||
</span>
|
||||
)
|
||||
))}
|
||||
|
|
|
|||
Loading…
Reference in a new issue