8000 Fix the rendering of query explanation with Postgresql · symfony/symfony@f238349 · GitHub
[go: up one dir, main page]

Skip to content

Commit f238349

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 54f3618 commit f238349

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/WebProfilerBundle/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)
0