mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-28 12:18:51 +03:00
Fix check icon not appearing for own-voted poll choices
This commit is contained in:
parent
8b5ac5154c
commit
410548603f
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ function Poll({ poll }) {
|
||||||
{voted && ownVotes.includes(i) && (
|
{voted && ownVotes.includes(i) && (
|
||||||
<>
|
<>
|
||||||
{' '}
|
{' '}
|
||||||
<Icon icon="check" size="s" />
|
<Icon icon="check-circle" size="s" />
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue