1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-23 16:24:02 +00:00

#4987 (web ui) up/down characters are not rendered correctly

This commit is contained in:
Mitchell Livingston 2012-08-07 00:14:04 +00:00
parent 14d4387807
commit 0a656a1375

View file

@ -90,12 +90,12 @@ TorrentRendererHelper.renderProgressbar = function(controller, t, progressbar)
TorrentRendererHelper.formatUL = function(t)
{
return '↑ ' + Transmission.fmt.speedBps(t.getUploadSpeed());
return ' ' + Transmission.fmt.speedBps(t.getUploadSpeed());
};
TorrentRendererHelper.formatDL = function(t)
{
return '↓ ' + Transmission.fmt.speedBps(t.getDownloadSpeed());
return ' ' + Transmission.fmt.speedBps(t.getDownloadSpeed());
};
/****