diff --git a/web/pgadmin/browser/static/css/wizard.css b/web/pgadmin/browser/static/css/wizard.css index a671546cb..78a986f4d 100644 --- a/web/pgadmin/browser/static/css/wizard.css +++ b/web/pgadmin/browser/static/css/wizard.css @@ -10,6 +10,7 @@ .wizard_dlg { height: 100%; width: 100%; + overflow-y: hidden; } .pgadmin-wizard { diff --git a/web/pgadmin/static/js/components/GrantWizard.jsx b/web/pgadmin/static/js/components/GrantWizard.jsx index e79107b7b..582679797 100644 --- a/web/pgadmin/static/js/components/GrantWizard.jsx +++ b/web/pgadmin/static/js/components/GrantWizard.jsx @@ -56,9 +56,6 @@ const useStyles = makeStyles(() => searchBox: { marginBottom: '1em', display: 'flex', - }, - table: { - }, searchPadding: { flex: 2.5 diff --git a/web/pgadmin/static/js/components/PgTable.jsx b/web/pgadmin/static/js/components/PgTable.jsx index 643a35036..56edef7d2 100644 --- a/web/pgadmin/static/js/components/PgTable.jsx +++ b/web/pgadmin/static/js/components/PgTable.jsx @@ -129,7 +129,6 @@ export default function PgTable({ columns, data, isSelectRow, ...props }) { defaultColumn, isSelectRow, }, - useBlockLayout, useGlobalFilter, useSortBy, useRowSelect, @@ -251,7 +250,6 @@ export default function PgTable({ columns, data, isSelectRow, ...props }) { height={height - 75} itemCount={rows.length} itemSize={35} - width={rows.length * 35 > 385 ? totalColumnsWidth + scrollBarSize : totalColumnsWidth} sorted={props?.sortOptions} > {RenderRow}