mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
- Fix priority column data being displayed when adding a new torrent and when priority column is hidden (queueing system disabled) is disabled (Web UI)
This commit is contained in:
parent
83da56b0eb
commit
bce575ee68
1 changed files with 5 additions and 0 deletions
|
@ -236,6 +236,11 @@ var dynamicTable = new Class ({
|
||||||
if(i==0) {
|
if(i==0) {
|
||||||
td.adopt(new Element('img', {'src':row[i], 'class': 'statusIcon'}));
|
td.adopt(new Element('img', {'src':row[i], 'class': 'statusIcon'}));
|
||||||
} else {
|
} else {
|
||||||
|
if(i==2) {
|
||||||
|
// Priority
|
||||||
|
if(this.priority_hidden)
|
||||||
|
td.addClass('invisible');
|
||||||
|
}
|
||||||
td.set('html', row[i]);
|
td.set('html', row[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue