Skip to content

Commit 22d7420

Browse files
committed
[WebProfilerBundle] Fix JS error when evaluating scripts
1 parent ac3141a commit 22d7420

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,9 @@ if (typeof Sfjs === 'undefined' || typeof Sfjs.loadToolbar === 'undefined') {
547547
/* Evaluate in global scope scripts embedded inside the toolbar */
548548
var i, scripts = [].slice.call(el.querySelectorAll('script'));
549549
for (i = 0; i < scripts.length; ++i) {
550-
eval.call({}, scripts[i].firstChild.nodeValue);
550+
if (scripts[i].firstChild) {
551+
eval.call({}, scripts[i].firstChild.nodeValue);
552+
}
551553
}
552554
553555
el.style.display = -1 !== xhr.responseText.indexOf('sf-toolbarreset') ? 'block' : 'none';

0 commit comments

Comments
 (0)