mirror of
https://github.com/transmission/transmission
synced 2024-12-24 08:43:27 +00:00
#4987 (web ui) up/down characters are not rendered correctly
This commit is contained in:
parent
14d4387807
commit
0a656a1375
1 changed files with 2 additions and 2 deletions
|
@ -90,12 +90,12 @@ TorrentRendererHelper.renderProgressbar = function(controller, t, progressbar)
|
||||||
|
|
||||||
TorrentRendererHelper.formatUL = function(t)
|
TorrentRendererHelper.formatUL = function(t)
|
||||||
{
|
{
|
||||||
return '↑ ' + Transmission.fmt.speedBps(t.getUploadSpeed());
|
return '↑ ' + Transmission.fmt.speedBps(t.getUploadSpeed());
|
||||||
};
|
};
|
||||||
|
|
||||||
TorrentRendererHelper.formatDL = function(t)
|
TorrentRendererHelper.formatDL = function(t)
|
||||||
{
|
{
|
||||||
return '↓ ' + Transmission.fmt.speedBps(t.getDownloadSpeed());
|
return '↓ ' + Transmission.fmt.speedBps(t.getDownloadSpeed());
|
||||||
};
|
};
|
||||||
|
|
||||||
/****
|
/****
|
||||||
|
|
Loading…
Reference in a new issue