mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-31 03:50:20 -07:00
Merge pull request #3005 from ngosang/wasted
Web UI: Display wasted data with friendly units. Closes #2994
This commit is contained in:
commit
17cba898e9
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ var loadTorrentData = function() {
|
|||
$('total_downloaded').set('html', friendlyUnit(data.total_downloaded) +
|
||||
" (" + friendlyUnit(data.total_downloaded_session) +
|
||||
" QBT_TR(this session)QBT_TR" + ")");
|
||||
$('total_wasted').set('html', data.total_wasted);
|
||||
$('total_wasted').set('html', friendlyUnit(data.total_wasted));
|
||||
temp = data.up_limit;
|
||||
$('up_limit').set('html', temp == -1 ? "∞" : temp);
|
||||
temp = data.dl_limit;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue