mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 14:08:03 -06:00
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user