mirror of
https://github.com/documenso/documenso.git
synced 2026-07-27 02:15:05 +10:00
fix: correct reversed comparison in admin organisations table pagination (#2842)
This commit is contained in:
@@ -238,7 +238,7 @@ export const AdminOrganisationsTable = ({
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{(table) =>
|
{(table) =>
|
||||||
!hidePaginationUntilOverflow || 1 > table.getPageCount() ? (
|
!hidePaginationUntilOverflow || table.getPageCount() > 1 ? (
|
||||||
<DataTablePagination additionalInformation="VisibleCount" table={table} />
|
<DataTablePagination additionalInformation="VisibleCount" table={table} />
|
||||||
) : null
|
) : null
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user