Skip to content

Commit 178822a

Browse files
authored
Merge pull request #974 from cakephp/4.x
merge 4.x => 5.x
2 parents f33b0e3 + c1cda97 commit 178822a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

webroot/js/modules/Panels/VariablesPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default (($) => {
66
} else {
77
document.cookie = `debugKit_sort=1; path=${window.debugKitWebroot}`;
88
}
9-
toolbar.loadPanel(toolbar.currentPanel(), 'panelvariables');
9+
toolbar.loadPanel(toolbar.currentPanel(), 'variables');
1010
});
1111
}
1212

webroot/js/modules/Toolbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export default class Toolbar {
182182
});
183183
$(document).on('click', '.js-toolbar-load-panel', function () {
184184
const panelId = $(this).attr('data-panel-id');
185-
that.loadPanel(panelId, 'panelhistory');
185+
that.loadPanel(panelId, 'history');
186186
});
187187
$(document).on('click', '.js-panel-close', () => {
188188
that.hide();

0 commit comments

Comments
 (0)