mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-05 22:57:25 +03:00
Merge pull request #6827 from naikel/webui_filter_fix
Fix slow filtering in WebUI
This commit is contained in:
commit
ced52e3269
1 changed files with 2 additions and 2 deletions
|
@ -107,7 +107,7 @@ window.addEvent('load', function () {
|
||||||
selected_category = hash;
|
selected_category = hash;
|
||||||
localStorage.setItem('selected_category', selected_category);
|
localStorage.setItem('selected_category', selected_category);
|
||||||
highlightSelectedCategory();
|
highlightSelectedCategory();
|
||||||
if (typeof torrentsTable.table != 'undefined')
|
if (typeof torrentsTable.tableBody != 'undefined')
|
||||||
updateMainData();
|
updateMainData();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -126,7 +126,7 @@ window.addEvent('load', function () {
|
||||||
selected_filter = f;
|
selected_filter = f;
|
||||||
localStorage.setItem('selected_filter', f);
|
localStorage.setItem('selected_filter', f);
|
||||||
// Reload torrents
|
// Reload torrents
|
||||||
if (typeof torrentsTable.table != 'undefined')
|
if (typeof torrentsTable.tableBody != 'undefined')
|
||||||
updateMainData();
|
updateMainData();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue