Skip to content

Commit 0d183e0

Browse files
committed
Fix the rendering of query explanation with Postgresql
Postgresql (and some other platforms) provide a textual query explanation rather than a tabular one. The previous styles were working only for a tabular display. For text allowing to break words, `min-content` is the width of a single letter.
1 parent 09d1284 commit 0d183e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Resources/views/Profiler/profiler.css.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2079,7 +2079,7 @@ tr.log-status-silenced > td:first-child:before {
20792079
max-width: 888px;
20802080
}
20812081
.width-full .sql-explain {
2082-
max-width: min-content;
2082+
max-width: unset;
20832083
}
20842084
.sql-explain table td, .sql-explain table tr {
20852085
word-break: normal;

0 commit comments

Comments
 (0)