1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

[Web UI] Fix sort by queue number

This commit is contained in:
ngosang 2015-07-14 01:46:08 +02:00
parent 948b2c0410
commit 10bba1a632

View File

@ -537,14 +537,15 @@ var dynamicTable = new Class({
this.columns['priority'].updateTd = function (td, row) { this.columns['priority'].updateTd = function (td, row) {
var priority = this.getRowValue(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) { this.columns['priority'].compareRows = function (row1, row2) {
var row1_val = this.getRowValue(row1); var row1_val = this.getRowValue(row1);
var row2_val = this.getRowValue(row2); var row2_val = this.getRowValue(row2);
if (row1_val == -1) if (row1_val < 1)
row1_val = 1000000; row1_val = 1000000;
if (row2_val == -1) if (row2_val < 1)
row2_val = 1000000; row2_val = 1000000;
if (row1_val < row2_val) if (row1_val < row2_val)
return -1; return -1;