From e1919af86ae17b53cd50402ca34809e48bf3629a Mon Sep 17 00:00:00 2001 From: Shailesh Parmar Date: Mon, 19 Dec 2022 10:27:47 +0530 Subject: [PATCH] UI: Fixed Pagination issue on dataset details page (#9387) --- .../DatabaseSchemaPage.component.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/openmetadata-ui/src/main/resources/ui/src/pages/DatabaseSchemaPage/DatabaseSchemaPage.component.tsx b/openmetadata-ui/src/main/resources/ui/src/pages/DatabaseSchemaPage/DatabaseSchemaPage.component.tsx index 84bb2ddd8de..8d0fcb4c2b4 100644 --- a/openmetadata-ui/src/main/resources/ui/src/pages/DatabaseSchemaPage/DatabaseSchemaPage.component.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/pages/DatabaseSchemaPage/DatabaseSchemaPage.component.tsx @@ -610,14 +610,16 @@ const DatabaseSchemaPage: FunctionComponent = () => { rowKey="id" size="small" /> - + {tableInstanceCount > PAGE_SIZE && tableData.length > 0 && ( + + )} ); };