From cf28d7df324ca2d5afe81f2640d2591ad6889989 Mon Sep 17 00:00:00 2001 From: Aditya Toshniwal Date: Wed, 22 Feb 2023 14:06:13 +0530 Subject: [PATCH] Fix an issue where query tool is stripping spaces in grid cell. #5803 --- web/pgadmin/static/js/components/PgReactDataGrid.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/web/pgadmin/static/js/components/PgReactDataGrid.jsx b/web/pgadmin/static/js/components/PgReactDataGrid.jsx index 675fa04c7..93483766e 100644 --- a/web/pgadmin/static/js/components/PgReactDataGrid.jsx +++ b/web/pgadmin/static/js/components/PgReactDataGrid.jsx @@ -28,6 +28,7 @@ const useStyles = makeStyles((theme)=>({ ...theme.mixins.panelBorder.right, ...theme.mixins.panelBorder.bottom, fontWeight: 'abc', + whiteSpace: 'pre', '&[aria-colindex="1"]': { padding: 0, },