Skip to content

Commit 1023bc7

Browse files
bug #60607 [WebProfilerBundle] Fix toolbar with ajax requests not closing (HypeMC)
This PR was merged into the 7.3 branch. Discussion ---------- [WebProfilerBundle] Fix toolbar with ajax requests not closing | Q | A | ------------- | --- | Branch? | 7.3 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | Fix #60602 | License | MIT Issue was introduced in #58380. Commits ------- ae19577 [WebProfilerBundle] Fix toolbar with ajax requests not closing
2 parents 75b679c + ae19577 commit 1023bc7

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)