Skip to content

Commit 04583fe

Browse files
Fixed an issue where data filter dialog removes newline character when sending SQL to the query tool. #9260
1 parent a1d2308 commit 04583fe

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/en_US/release_notes_9_12.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Bug fixes
3737

3838
| `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.
3939
| `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".
40+
| `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.
4041
| `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.
4142
4243

web/pgadmin/static/js/ToolView.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function ToolForm({actionUrl, params}) {
2727
return (
2828
<form ref={formRef} id="tool-form" action={actionUrl} method="post" hidden>
2929
{Object.keys(params).map((k)=>{
30-
return k ? <input key={k} name={k} defaultValue={params[k]} /> : <></>;
30+
return k ? <textarea key={k} name={k} defaultValue={params[k]} /> : <></>;
3131
})}
3232
</form>
3333
);

0 commit comments

Comments
 (0)