Fixed an issue where data filter dialog removes newline character when sending SQL to the query tool. #9260

pull/9501/head
Aditya Toshniwal 2026-01-05 15:01:05 +05:30
parent a1d2308dc9
commit 04583fe8f0
2 changed files with 2 additions and 1 deletions

View File

@ -37,6 +37,7 @@ Bug fixes
| `Issue #9196 <https://github.com/pgadmin-org/pgadmin4/issues/9196>`_ - Fixed an issue where double click to open a file in the file manager is not working.
| `Issue #9235 <https://github.com/pgadmin-org/pgadmin4/issues/9235>`_ - Fixed an issue where "View/Edit Data" shortcut opened "First 100 rows" instead of "All Rows".
| `Issue #9260 <https://github.com/pgadmin-org/pgadmin4/issues/9260>`_ - Fixed an issue where data filter dialog removes newline character when sending SQL to the query tool.
| `Issue #9380 <https://github.com/pgadmin-org/pgadmin4/issues/9380>`_ - Fixed an issue where the Query History panel would auto-scroll to the top and did not preserve the scroll bar position for the selected entry.

View File

@ -27,7 +27,7 @@ function ToolForm({actionUrl, params}) {
return (
<form ref={formRef} id="tool-form" action={actionUrl} method="post" hidden>
{Object.keys(params).map((k)=>{
return k ? <input key={k} name={k} defaultValue={params[k]} /> : <></>;
return k ? <textarea key={k} name={k} defaultValue={params[k]} /> : <></>;
})}
</form>
);