Fix an issue where explain plan details is showing HTML escaped characters. #6352

This commit is contained in:
Aditya Toshniwal 2023-06-21 13:45:43 +05:30
parent 0d926d4c7f
commit 7c6e83c6fe
2 changed files with 3 additions and 2 deletions

View File

@ -37,6 +37,7 @@ Bug fixes
| `Issue #6266 <https://github.com/pgadmin-org/pgadmin4/issues/6266>`_ - When opening pgAdmin the layout should be auto reset if it is corrupted. Reset layout menu should work if layout is corrupted while using pgAdmin.
| `Issue #6291 <https://github.com/pgadmin-org/pgadmin4/issues/6291>`_ - Fix an issue where loading more rows indicator will not disappear if connection is lost.
| `Issue #6340 <https://github.com/pgadmin-org/pgadmin4/issues/6340>`_ - Fix an encoding error when connecting through Pgbouncer.
| `Issue #6352 <https://github.com/pgadmin-org/pgadmin4/issues/6352>`_ - Fix an issue where explain plan details is showing HTML escaped characters.
| `Issue #6354 <https://github.com/pgadmin-org/pgadmin4/issues/6354>`_ - Fixed an issue where queries with temporary tables in the same transaction is not working.
| `Issue #6363 <https://github.com/pgadmin-org/pgadmin4/issues/6363>`_ - Fixed an issue where preview images for themes were not loading.
| `Issue #6420 <https://github.com/pgadmin-org/pgadmin4/issues/6420>`_ - Fix raise notice from func/proc or code blocks are no longer displayed live.

View File

@ -196,8 +196,8 @@ function NodeDetails({plan, download=false}) {
return `${key}: ${plan[key]}\n`;
} else {
return (<tr key={key}>
<td>{_.escape(key)}</td>
<td>{_.escape(plan[key])}</td>
<td>{key}</td>
<td>{plan[key]}</td>
</tr>);
}
})}