Ensure that in the Query History tab, query details should be scrollable. Fixes #3827

pull/61/head
Nikhil Mohite 2021-09-17 21:01:24 +05:30 committed by Akshay Joshi
parent 346ee6ba5f
commit 99c99a9ce9
2 changed files with 4 additions and 1 deletions

View File

@ -22,6 +22,7 @@ Bug fixes
********* *********
| `Issue #2546 <https://redmine.postgresql.org/issues/2546>`_ - Added support to create the Partitioned table using COLLATE and opclass. | `Issue #2546 <https://redmine.postgresql.org/issues/2546>`_ - Added support to create the Partitioned table using COLLATE and opclass.
| `Issue #3827 <https://redmine.postgresql.org/issues/3827>`_ - Ensure that in the Query History tab, query details should be scrollable.
| `Issue #6712 <https://redmine.postgresql.org/issues/6712>`_ - Fixed an issue where collapse and expand arrows mismatch in case of nested IF. | `Issue #6712 <https://redmine.postgresql.org/issues/6712>`_ - Fixed an issue where collapse and expand arrows mismatch in case of nested IF.
| `Issue #6713 <https://redmine.postgresql.org/issues/6713>`_ - Fixed an issue where the last message is not visible in the Debugger. | `Issue #6713 <https://redmine.postgresql.org/issues/6713>`_ - Fixed an issue where the last message is not visible in the Debugger.
| `Issue #6724 <https://redmine.postgresql.org/issues/6724>`_ - Fixed an issue where the drop cascade button enables for Databases. | `Issue #6724 <https://redmine.postgresql.org/issues/6724>`_ - Fixed an issue where the drop cascade button enables for Databases.

View File

@ -96,6 +96,7 @@
.query-detail { .query-detail {
height: 100%; height: 100%;
width: 100%; width: 100%;
min-height: 19em;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background-color: $color-bg; background-color: $color-bg;
@ -156,7 +157,7 @@
flex: 5; flex: 5;
margin-left: 10px; margin-left: 10px;
margin-right: 10px; margin-right: 10px;
height: 0; min-height: 1em;
position: relative; position: relative;
.copy-all, .was-copied, .copy-to-editor { .copy-all, .was-copied, .copy-to-editor {
@ -196,6 +197,7 @@
flex: 2; flex: 2;
display: flex; display: flex;
padding: 0 20px; padding: 0 20px;
min-height: 6em;
.message { .message {
flex: 2 2 0%; flex: 2 2 0%;