Skip to content

Commit

Permalink
#1039: Formatting fixed.
Browse files Browse the repository at this point in the history
Removed comma and added space after download speed.
  • Loading branch information
babruix authored and feross committed Oct 14, 2016
1 parent 5158606 commit 32f96c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/renderer/pages/player-page.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,9 @@ function renderLoadingSpinner (state) {
<div key='loading' className='media-stalled'>
<div key='loading-spinner' className='loading-spinner'>&nbsp;</div>
<div key='loading-progress' className='loading-status ellipsis'>
<span className='progress'>{fileProgress}%</span> downloaded,
<span>{prettyBytes(prog.downloadSpeed || 0)}/s</span>
<span>{prettyBytes(prog.uploadSpeed || 0)}/s</span>
<span className='progress'>{fileProgress}%</span> downloaded
<span> {prettyBytes(prog.downloadSpeed || 0)}/s</span>
<span> {prettyBytes(prog.uploadSpeed || 0)}/s</span>
</div>
</div>
)
Expand Down

0 comments on commit 32f96c0

Please sign in to comment.