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.
2 parents 65918d0 + 27f1dbd commit c1cda97Copy full SHA for c1cda97
webroot/js/modules/Panels/VariablesPanel.js
@@ -6,7 +6,7 @@ export default (($) => {
6
} else {
7
document.cookie = `debugKit_sort=1; path=${window.debugKitWebroot}`;
8
}
9
- toolbar.loadPanel(toolbar.currentPanel(), 'panelvariables');
+ toolbar.loadPanel(toolbar.currentPanel(), 'variables');
10
});
11
12
webroot/js/modules/Toolbar.js
@@ -182,7 +182,7 @@ export default class Toolbar {
182
183
$(document).on('click', '.js-toolbar-load-panel', function () {
184
const panelId = $(this).attr('data-panel-id');
185
- that.loadPanel(panelId, 'panelhistory');
+ that.loadPanel(panelId, 'history');
186
187
$(document).on('click', '.js-panel-close', () => {
188
that.hide();
0 commit comments