We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30e7d60 commit 119ae50Copy full SHA for 119ae50
src/DebugBar/Resources/widgets/templates/widget.js
@@ -18,7 +18,7 @@
18
this.$list = new PhpDebugBar.Widgets.ListWidget({ itemRenderer: function(li, tpl) {
19
$('<span />').addClass(csscls('name')).text(tpl.name).appendTo(li);
20
21
- if (typeof tpl.xdebug_link !== 'undefined') {
+ if (typeof tpl.xdebug_link !== 'undefined' && tpl.xdebug_link !== null) {
22
if (tpl.xdebug_link.ajax) {
23
$('<a title="' + tpl.xdebug_link.url + '"></a>').on('click', function () {
24
$.ajax(tpl.xdebug_link.url);
0 commit comments