mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-13 18:17:08 -07:00
WebUI: Remove extra parethesis
This commit is contained in:
parent
408cc7101e
commit
ac507261f8
1 changed files with 2 additions and 2 deletions
|
@ -52,10 +52,10 @@ var loadTorrentData = function() {
|
||||||
$('comment').set('html', data.comment);
|
$('comment').set('html', data.comment);
|
||||||
$('total_uploaded').set('html', friendlyUnit(data.total_uploaded) +
|
$('total_uploaded').set('html', friendlyUnit(data.total_uploaded) +
|
||||||
" (" + friendlyUnit(data.total_uploaded_session) +
|
" (" + friendlyUnit(data.total_uploaded_session) +
|
||||||
" (" + "_(this session)" + ")");
|
" _(this session)" + ")");
|
||||||
$('total_downloaded').set('html', friendlyUnit(data.total_downloaded) +
|
$('total_downloaded').set('html', friendlyUnit(data.total_downloaded) +
|
||||||
" (" + friendlyUnit(data.total_downloaded_session) +
|
" (" + friendlyUnit(data.total_downloaded_session) +
|
||||||
" (" + "_(this session)" + ")");
|
" _(this session)" + ")");
|
||||||
$('total_wasted').set('html', data.total_wasted);
|
$('total_wasted').set('html', data.total_wasted);
|
||||||
temp = data.up_limit;
|
temp = data.up_limit;
|
||||||
$('up_limit').set('html', temp == -1 ? "∞" : temp);
|
$('up_limit').set('html', temp == -1 ? "∞" : temp);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue