8000 Fixed the flickering when loading complex profiler panels · symfony/symfony@e9132b3 · GitHub
[go: up one dir, main page]

Skip to content

Commit e9132b3

Browse files
committed
Fixed the flickering when loading complex profiler panels
1 parent 9af7354 commit e9132b3

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/layout.html.twig

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,6 @@
4343

4444
<div id="content" class="container">
4545
<div id="main">
46-
<div id="collector-wrapper">
47-
<div id="collector-content">
48-
{{ include('@WebProfiler/Profiler/base_js.html.twig') }}
49-
{% block panel '' %}
50-
</div>
51-
</div>
52-
5346
<div id="sidebar">
5447
<div id="sidebar-shortcuts">
5548
<div class="shortcuts">
@@ -87,6 +80,13 @@
8780
</ul>
8881
{% endif %}
8982
</div>
83+
84+
<div id="collector-wrapper">
85+
<div id="collector-content">
86+
{{ include('@WebProfiler/Profiler/base_js.html.twig') }}
87+
{% block panel '' %}
88+
</div>
89+
</div>
9090
</div>
9191
</div>
9292
{% endblock %}

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/profiler.css.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ tr.status-warning td {
433433
}
434434
#main {
435435
display: flex;
436-
flex-direction: row-reverse;
436+
flex-direction: row;
437437
min-height: 100%;
438438
}
439439
#sidebar {

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/search.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div id="sidebar-search">
1+
<div id="sidebar-search" class="hidden">
22
<form action="{{ path('_profiler_search') }}" method="get">
33
<div class="form-group">
44
<label for="ip">IP</label>

0 commit comments

Comments
 (0)
0