mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01: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
|
||||
condition={
|
||||
tableInstance.getRowModel().rows.length > 0 &&
|
||||
(totalItems || 0) > pagination.pageSize
|
||||
(totalItems || 0) > 25
|
||||
}
|
||||
show={
|
||||
<StickyPaginationBar
|
||||
|
Loading…
Reference in New Issue
Block a user