1
0
Fork 0

Fix check icon not appearing for own-voted poll choices

This commit is contained in:
Lim Chee Aun 2022-12-14 17:11:16 +08:00
parent 8b5ac5154c
commit 410548603f

View file

@ -301,7 +301,7 @@ function Poll({ poll }) {
{voted && ownVotes.includes(i) && (
<>
{' '}
<Icon icon="check" size="s" />
<Icon icon="check-circle" size="s" />
</>
)}
</div>