Skip to content

Commit 5373983

Browse files
authored
Merge pull request #897 from cakephp/history-reload
Fix Reload button in History panel
2 parents aa8803f + 6f8ba1a commit 5373983

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webroot/js/modules/Toolbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export default class Toolbar {
173173
$(document).on('click', '.js-toolbar-scroll-right', () => {
174174
that.scroll('right');
175175
});
176-
$(document).on('click', '.js-toolbar-load-panel', () => {
176+
$(document).on('click', '.js-toolbar-load-panel', function () {
177177
const panelId = $(this).attr('data-panel-id');
178178
that.loadPanel(panelId, 'panelhistory');
179179
});

0 commit comments

Comments
 (0)