Touch up welcome page

This commit is contained in:
Kyle Drake 2015-04-09 12:46:55 -07:00
parent 602fc1a82d
commit 949380ed09
5 changed files with 198 additions and 180 deletions

View file

@ -15,9 +15,9 @@ class Numeric
# if space >= 1000000
# "#{space/1000000} TB"
if space >= 1000
"#{space/1000} GB"
"#{(space/1000).to_comma_separated} GB"
else
"#{space} MB"
"#{space.to_comma_separated} MB"
end
end