switch to a + when showing size growth

This commit is contained in:
Adam Argyle
2021-07-09 10:41:18 -07:00
parent ad5002c79c
commit b5c1c72e65

View File

@@ -110,7 +110,7 @@ export default class Results extends Component<Props, State> {
<div class={style.percentOutput}>
{diff && diff !== 1 && (
<span class={style.sizeDirection}>
{diff < 1 ? '↓' : ''}
{diff < 1 ? '↓' : '+'}
</span>
)}
<span class={style.sizeValue}>{percent || 0}</span>