mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-07 05:31:25 -07:00
Don't use Object.prototypes builtins directly
See: https://eslint.org/docs/rules/no-prototype-builtins
This commit is contained in:
parent
1f1cabd144
commit
5fe0e9395f
2 changed files with 6 additions and 6 deletions
|
@ -778,7 +778,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
|
||||
const tds = tr.getElements('td');
|
||||
for (let i = 0; i < this.columns.length; ++i) {
|
||||
if (data.hasOwnProperty(this.columns[i].dataProperties[0]))
|
||||
if (Object.prototype.hasOwnProperty.call(data, this.columns[i].dataProperties[0]))
|
||||
this.columns[i].updateTd(tds[i], row);
|
||||
}
|
||||
row['data'] = {};
|
||||
|
@ -2058,7 +2058,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
|
||||
const tds = tr.getElements('td');
|
||||
for (let i = 0; i < this.columns.length; ++i) {
|
||||
if (data.hasOwnProperty(this.columns[i].dataProperties[0]))
|
||||
if (Object.prototype.hasOwnProperty.call(data, this.columns[i].dataProperties[0]))
|
||||
this.columns[i].updateTd(tds[i], row);
|
||||
}
|
||||
row['data'] = {};
|
||||
|
@ -2203,7 +2203,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
|
||||
const tds = tr.getElements('td');
|
||||
for (let i = 0; i < this.columns.length; ++i) {
|
||||
if (data.hasOwnProperty(this.columns[i].dataProperties[0]))
|
||||
if (Object.prototype.hasOwnProperty.call(data, this.columns[i].dataProperties[0]))
|
||||
this.columns[i].updateTd(tds[i], row);
|
||||
}
|
||||
row['data'] = {};
|
||||
|
@ -2484,7 +2484,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
|
||||
const tds = tr.getElements('td');
|
||||
for (let i = 0; i < this.columns.length; ++i) {
|
||||
if (data.hasOwnProperty(this.columns[i].dataProperties[0]))
|
||||
if (Object.prototype.hasOwnProperty.call(data, this.columns[i].dataProperties[0]))
|
||||
this.columns[i].updateTd(tds[i], row);
|
||||
}
|
||||
row['data'] = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue