mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-21 13:47:39 +02:00
fix: minimum pagination size (#6322)
This commit is contained in:
parent
8b0218df6a
commit
24d6d24e24
@ -103,7 +103,7 @@ export const PaginatedTable = <T extends object>({
|
|||||||
<ConditionallyRender
|
<ConditionallyRender
|
||||||
condition={
|
condition={
|
||||||
tableInstance.getRowModel().rows.length > 0 &&
|
tableInstance.getRowModel().rows.length > 0 &&
|
||||||
(totalItems || 0) > pagination.pageSize
|
(totalItems || 0) > 25
|
||||||
}
|
}
|
||||||
show={
|
show={
|
||||||
<StickyPaginationBar
|
<StickyPaginationBar
|
||||||
|
Loading…
Reference in New Issue
Block a user