mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
[Web UI] Fix sort by queue number
This commit is contained in:
parent
948b2c0410
commit
10bba1a632
1 changed files with 4 additions and 3 deletions
|
@ -537,14 +537,15 @@ var dynamicTable = new Class({
|
|||
|
||||
this.columns['priority'].updateTd = function (td, row) {
|
||||
var priority = this.getRowValue(row);
|
||||
td.set('html', priority < 0 ? null : priority);
|
||||
td.set('html', priority < 1 ? '*' : priority);
|
||||
};
|
||||
|
||||
this.columns['priority'].compareRows = function (row1, row2) {
|
||||
var row1_val = this.getRowValue(row1);
|
||||
var row2_val = this.getRowValue(row2);
|
||||
if (row1_val == -1)
|
||||
if (row1_val < 1)
|
||||
row1_val = 1000000;
|
||||
if (row2_val == -1)
|
||||
if (row2_val < 1)
|
||||
row2_val = 1000000;
|
||||
if (row1_val < row2_val)
|
||||
return -1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue