mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-08-26 13:42:37 +00: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
@ -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…
x
Reference in New Issue
Block a user