diff --git a/docs/en_US/release_notes_6_15.rst b/docs/en_US/release_notes_6_15.rst index 46f3fd0a5..9ba6b2288 100644 --- a/docs/en_US/release_notes_6_15.rst +++ b/docs/en_US/release_notes_6_15.rst @@ -30,6 +30,7 @@ Bug fixes ********* | `Issue #5101 `_ - Ensure consistent orderings for ACLS when comparing schemas in the schema diff. + | `Issue #5132 `_ - Ensure that the result grid column should take width as pre preferences setting on first execution. | `Issue #5133 `_ - Fixed an exception occur while taking backup and SSL certificates/keys are not found in the specified path. | `Issue #5145 `_ - Fixed intermittent error shown while OAuth2 login. | `Issue #5167 `_ - Ensure that the path to the psqlrc file is correct when multiple users open the PSQL tool at the same time. diff --git a/web/pgadmin/tools/sqleditor/static/js/components/QueryToolDataGrid/index.jsx b/web/pgadmin/tools/sqleditor/static/js/components/QueryToolDataGrid/index.jsx index 467cb4848..0b868d28e 100644 --- a/web/pgadmin/tools/sqleditor/static/js/components/QueryToolDataGrid/index.jsx +++ b/web/pgadmin/tools/sqleditor/static/js/components/QueryToolDataGrid/index.jsx @@ -351,7 +351,7 @@ function getTextWidth(column, rows, canvas, columnWidthBy) { } } /* Gracefull */ - width += 2; + width += 8; return width; } diff --git a/web/pgadmin/tools/sqleditor/static/js/components/sections/ResultSet.jsx b/web/pgadmin/tools/sqleditor/static/js/components/sections/ResultSet.jsx index 8de3e2d10..7374e2eeb 100644 --- a/web/pgadmin/tools/sqleditor/static/js/components/sections/ResultSet.jsx +++ b/web/pgadmin/tools/sqleditor/static/js/components/sections/ResultSet.jsx @@ -793,8 +793,8 @@ export function ResultSet() { (procQueryData, procColumns, procRows)=>{ setRowsResetKey((prev)=>prev+1); setQueryData(procQueryData); - setColumns(procColumns); setRows(procRows); + setColumns(procColumns); }, (planJson)=>{ /* No need to open if plan is empty */