Skip to content

Commit

Permalink
Merge pull request #982 from cakephp/4.x
Browse files Browse the repository at this point in the history
merge 4.x -> 4.next
  • Loading branch information
LordSimal authored Dec 26, 2023
2 parents 92cbfa9 + 49c841e commit 7a2ccef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Panel/MailPanel.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function initialize()

$configs[$name] = $transport;
}
$property->setValue($configs);
$reflection->setStaticPropertyValue('_config', $configs);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion webroot/js/modules/Panels/VariablesPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default (($) => {
} else {
document.cookie = `debugKit_sort=1; path=${window.debugKitWebroot}`;
}
toolbar.loadPanel(toolbar.currentPanel(), 'panelvariables');
toolbar.loadPanel(toolbar.currentPanel(), 'variables');
});
}

Expand Down
2 changes: 1 addition & 1 deletion webroot/js/modules/Toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export default class Toolbar {
});
$(document).on('click', '.js-toolbar-load-panel', function () {
const panelId = $(this).attr('data-panel-id');
that.loadPanel(panelId, 'panelhistory');
that.loadPanel(panelId, 'history');
});
$(document).on('click', '.js-panel-close', () => {
that.hide();
Expand Down

0 comments on commit 7a2ccef

Please sign in to comment.