diff --git a/web/skins/classic/views/js/console.js b/web/skins/classic/views/js/console.js index 8d9c6a808..d701a990e 100644 --- a/web/skins/classic/views/js/console.js +++ b/web/skins/classic/views/js/console.js @@ -390,7 +390,9 @@ function selectMonitor(element) { function reloadWindow() { // Use table refresh instead of full page reload if (table && table.length) { - table.bootstrapTable('refresh'); + const scrollPosition = table.bootstrapTable('getScrollPosition'); + table.bootstrapTable('refresh', {silent: true, reinit: false}); + table.bootstrapTable('scrollTo', scrollPosition); } else { window.location.replace(thisUrl); }