WebUI: fix lint errors

PR #23277.
This commit is contained in:
Tom Piccirello
2025-09-21 19:35:21 -07:00
committed by GitHub
parent 9696c99dbd
commit 3b744c3dba
3 changed files with 6 additions and 6 deletions

View File

@@ -3294,7 +3294,7 @@ window.qBittorrent.DynamicTable ??= (() => {
this.newColumn("checked", "", "", 30, true);
this.newColumn("name", "", "", -1, true);
this.columns["checked"].updateTd = function(td, row) {
this.columns["checked"].updateTd = (td, row) => {
if (document.getElementById(`cbRssDlRule${row.rowId}`) === null) {
const checkbox = document.createElement("input");
checkbox.type = "checkbox";
@@ -3391,7 +3391,7 @@ window.qBittorrent.DynamicTable ??= (() => {
this.newColumn("checked", "", "", 30, true);
this.newColumn("name", "", "", -1, true);
this.columns["checked"].updateTd = function(td, row) {
this.columns["checked"].updateTd = (td, row) => {
if (document.getElementById(`cbRssDlFeed${row.rowId}`) === null) {
const checkbox = document.createElement("input");
checkbox.type = "checkbox";