Skip to content

Commit 7a2ccef

Browse files
authored
Merge pull request #982 from cakephp/4.x
merge 4.x -> 4.next
2 parents 92cbfa9 + 49c841e commit 7a2ccef

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Panel/MailPanel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function initialize()
6767

6868
$configs[$name] = $transport;
6969
}
70-
$property->setValue($configs);
70+
$reflection->setStaticPropertyValue('_config', $configs);
7171
}
7272

7373
/**

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)