diff --git a/web/pgadmin/misc/dependencies/static/js/Dependencies.jsx b/web/pgadmin/misc/dependencies/static/js/Dependencies.jsx index 1fe327036..b4e0f0b19 100644 --- a/web/pgadmin/misc/dependencies/static/js/Dependencies.jsx +++ b/web/pgadmin/misc/dependencies/static/js/Dependencies.jsx @@ -81,14 +81,14 @@ export default function Dependencies({ nodeData, item, node, ...props }) { Header: 'Type', accessor: 'type', sortble: true, - resizable: false, + resizable: true, disableGlobalFilter: false, }, { Header: 'Name', accessor: 'name', sortble: true, - resizable: false, + resizable: true, disableGlobalFilter: false, }, { @@ -163,7 +163,7 @@ export default function Dependencies({ nodeData, item, node, ...props }) { > ) : (
- {loaderText ? () : + {loaderText ? () : }
diff --git a/web/pgadmin/misc/dependents/static/js/Dependents.jsx b/web/pgadmin/misc/dependents/static/js/Dependents.jsx index 293da8041..ef43ce79a 100644 --- a/web/pgadmin/misc/dependents/static/js/Dependents.jsx +++ b/web/pgadmin/misc/dependents/static/js/Dependents.jsx @@ -82,14 +82,14 @@ export default function Dependents({ nodeData, item, node, ...props }) { Header: 'Type', accessor: 'type', sortble: true, - resizable: false, + resizable: true, disableGlobalFilter: false, }, { Header: 'Name', accessor: 'name', sortble: true, - resizable: false, + resizable: true, disableGlobalFilter: false, }, { @@ -164,7 +164,7 @@ export default function Dependents({ nodeData, item, node, ...props }) { > ) : (
- {loaderText ? () : + {loaderText ? () : }
diff --git a/web/pgadmin/misc/properties/CollectionNodeProperties.jsx b/web/pgadmin/misc/properties/CollectionNodeProperties.jsx index 7ca18a9b0..c4550ee7e 100644 --- a/web/pgadmin/misc/properties/CollectionNodeProperties.jsx +++ b/web/pgadmin/misc/properties/CollectionNodeProperties.jsx @@ -320,7 +320,7 @@ export function CollectionNodeView({ : (
- {loaderText ? () : + {loaderText ? () : }
diff --git a/web/pgadmin/misc/sql/static/js/SQL.jsx b/web/pgadmin/misc/sql/static/js/SQL.jsx index fa5f66650..ece393a69 100644 --- a/web/pgadmin/misc/sql/static/js/SQL.jsx +++ b/web/pgadmin/misc/sql/static/js/SQL.jsx @@ -88,7 +88,7 @@ export default function SQL({ nodeData, node, did, ...props }) { return ( <> - + 0 ? nodeSQL : msg} diff --git a/web/pgadmin/misc/statistics/static/js/Statistics.jsx b/web/pgadmin/misc/statistics/static/js/Statistics.jsx index 72fb5d5bb..e7f199a91 100644 --- a/web/pgadmin/misc/statistics/static/js/Statistics.jsx +++ b/web/pgadmin/misc/statistics/static/js/Statistics.jsx @@ -39,11 +39,6 @@ const useStyles = makeStyles((theme) => ({ marginLeft: '0.5rem', fontSize: '0.875rem', }, - loading: { - marginLeft: '0.5rem', - fontSize: '0.875rem', - colour: theme.palette.grey[400] - }, autoResizer: { height: '100% !important', width: '100% !important', @@ -113,14 +108,14 @@ function getColumn(data, singleLineStatistics) { Header: 'Statictics', accessor: 'name', sortble: true, - resizable: false, + resizable: true, disableGlobalFilter: false, }, { Header: 'Value', accessor: 'value', sortble: true, - resizable: false, + resizable: true, disableGlobalFilter: false, }, ]; @@ -191,14 +186,14 @@ export default function Statistics({ nodeData, item, node, ...props }) { Header: 'Statictics', accessor: 'name', sortble: true, - resizable: false, + resizable: true, disableGlobalFilter: false, }, { Header: 'Value', accessor: 'value', sortble: true, - resizable: false, + resizable: true, disableGlobalFilter: false, }, ]); @@ -274,7 +269,7 @@ export default function Statistics({ nodeData, item, node, ...props }) { > ) : (
- +
)}