mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-19 19:14:55 +00:00
fix the queue cell renderer
This commit is contained in:
parent
76f35aee85
commit
85f34614dc
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
function queue(value) {
|
||||
return value + 1;
|
||||
return (value == -1) ? "" : value + 1;
|
||||
}
|
||||
|
||||
function name(value, p, r) {
|
||||
|
|
Loading…
Add table
Reference in a new issue