Merge pull request #4719 from IgorA100/patch-272289

Silent refresh bootstrapTable on Console page
pull/4428/merge
Isaac Connor 2026-03-21 06:41:54 -04:00 committed by GitHub
commit 8970718f96
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -390,7 +390,7 @@ function selectMonitor(element) {
function reloadWindow() {
// Use table refresh instead of full page reload
if (table && table.length) {
table.bootstrapTable('refresh');
table.bootstrapTable('refresh', {silent: true, reinit: false});
} else {
window.location.replace(thisUrl);
}