WebUI: fix accessing wrong variable

Fix up 7131d1bd6b.
PR #21129.
This commit is contained in:
Chocobo1 2024-07-30 20:25:19 +08:00 committed by GitHub
parent 642a9c29eb
commit d74f49111b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -122,7 +122,7 @@ window.qBittorrent.DynamicTable ??= (() => {
clearTimeout(this.resizeDebounceTimer);
this.resizeDebounceTimer = setTimeout(() => {
resizeFn(entries);
resizeDebounceTimer = -1;
this.resizeDebounceTimer = -1;
}, 100);
};