Skip to content

Commit

Permalink
fix: add white space in storage usage section (minio#4038)
Browse files Browse the repository at this point in the history
Fix for minio#3962 - add whitespace before storage usage details section in
 Browse component
  • Loading branch information
cvrajeesh authored and harshavardhana committed Apr 4, 2017
1 parent 4747adf commit e9037b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions browser/app/js/components/Browse.js
Expand Up @@ -469,11 +469,11 @@ export default class Browse extends React.Component {
</div>
<ul>
<li>
Used:
<span>Used: </span>
{ humanize.filesize(total - free) }
</li>
<li className="pull-right">
Free:
<span>Free: </span>
{ humanize.filesize(total - used) }
</li>
</ul>
Expand Down

0 comments on commit e9037b9

Please sign in to comment.