Fix total download

master
Drew DeVault 2017-11-05 17:09:38 -05:00
parent b1a6eec0a1
commit 488747baff
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ export default function Ratio({ up, down }) {
{`${ratio.toFixed(3)} `}
</span>
<span>({formatAmount(up)} <FontAwesome name="arrow-up" /></span>
<span>{` ${formatAmount(up)}`} <FontAwesome name="arrow-down" />)</span>
<span>{` ${formatAmount(down)}`} <FontAwesome name="arrow-down" />)</span>
</span>
);
}