mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-21 16:07:23 -06:00
WebUI: Remove extra parethesis
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user