Skip to content

Commit ae19577

Browse files
committed
[WebProfilerBundle] Fix toolbar with ajax requests not closing
1 parent 158dff8 commit ae19577

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
145145
var ajaxToolbarPanel = document.querySelector('.sf-toolbar-block-ajax');
146146
if (requestStack.length) {
147-
ajaxToolbarPanel.style.display = 'block';
147+
ajaxToolbarPanel.style.display = '';
148148
} else {
149149
ajaxToolbarPanel.style.display = 'none';
150150
}

0 commit comments

Comments
 (0)