Skip to content

Commit

Permalink
WebUI: fix accessing wrong variable
Browse files Browse the repository at this point in the history
Fix up 7131d1b.
PR #21129.
  • Loading branch information
Chocobo1 committed Jul 30, 2024
1 parent 642a9c2 commit d74f491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/www/private/scripts/dynamicTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ window.qBittorrent.DynamicTable ??= (() => {
clearTimeout(this.resizeDebounceTimer);
this.resizeDebounceTimer = setTimeout(() => {
resizeFn(entries);
resizeDebounceTimer = -1;
this.resizeDebounceTimer = -1;
}, 100);
};

Expand Down

0 comments on commit d74f491

Please sign in to comment.