Render unicode emoji in polls using emoji pack

Port 4407f07014 to glitch-soc
This commit is contained in:
Eugen Rochko
2019-03-06 03:57:46 +01:00
committed by Thibaut Girka
parent 4806232997
commit 7f32d675b0
3 changed files with 14 additions and 3 deletions

View File

@ -120,7 +120,7 @@ class Poll extends ImmutablePureComponent {
{!showResults && <span className={classNames('poll__input', { checkbox: poll.get('multiple'), active })} />}
{showResults && <span className='poll__number'>{Math.round(percent)}%</span>}
{option.get('title')}
<span dangerouslySetInnerHTML={{ __html: option.get('title_emojified') }} />
</label>
</li>
);