Fixed an issue where data filter dialog removes newline character when sending SQL to the query tool. #9260
parent
a1d2308dc9
commit
04583fe8f0
|
|
@ -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.
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue