mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-23 09:47:08 +03: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) {
|
||||
td.adopt(new Element('img', {'src':row[i], 'class': 'statusIcon'}));
|
||||
} else {
|
||||
if(i==2) {
|
||||
// Priority
|
||||
if(this.priority_hidden)
|
||||
td.addClass('invisible');
|
||||
}
|
||||
td.set('html', row[i]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue