mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-28 10:56:02 +00:00
UI: Fixed Pagination issue on dataset details page (#9387)
This commit is contained in:
parent
fa65480864
commit
e1919af86a
@ -610,14 +610,16 @@ const DatabaseSchemaPage: FunctionComponent = () => {
|
||||
rowKey="id"
|
||||
size="small"
|
||||
/>
|
||||
<NextPrevious
|
||||
isNumberBased
|
||||
currentPage={currentTablesPage}
|
||||
pageSize={PAGE_SIZE}
|
||||
paging={paging}
|
||||
pagingHandler={tablePaginationHandler}
|
||||
totalCount={tableInstanceCount}
|
||||
/>
|
||||
{tableInstanceCount > PAGE_SIZE && tableData.length > 0 && (
|
||||
<NextPrevious
|
||||
isNumberBased
|
||||
currentPage={currentTablesPage}
|
||||
pageSize={PAGE_SIZE}
|
||||
paging={paging}
|
||||
pagingHandler={tablePaginationHandler}
|
||||
totalCount={tableInstanceCount}
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user