mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-28 19:05:53 +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"
|
rowKey="id"
|
||||||
size="small"
|
size="small"
|
||||||
/>
|
/>
|
||||||
<NextPrevious
|
{tableInstanceCount > PAGE_SIZE && tableData.length > 0 && (
|
||||||
isNumberBased
|
<NextPrevious
|
||||||
currentPage={currentTablesPage}
|
isNumberBased
|
||||||
pageSize={PAGE_SIZE}
|
currentPage={currentTablesPage}
|
||||||
paging={paging}
|
pageSize={PAGE_SIZE}
|
||||||
pagingHandler={tablePaginationHandler}
|
paging={paging}
|
||||||
totalCount={tableInstanceCount}
|
pagingHandler={tablePaginationHandler}
|
||||||
/>
|
totalCount={tableInstanceCount}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user