[Glitch] Fix rendering of poll options in status history modal

Port d8bdce2835 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Emelia Smith
2025-10-15 11:05:10 +02:00
committed by Claire
parent ef413ef713
commit 2ccab68636

View File

@@ -93,14 +93,16 @@ class CompareHistoryModal extends PureComponent {
<ul> <ul>
{currentVersion.getIn(['poll', 'options']).map(option => ( {currentVersion.getIn(['poll', 'options']).map(option => (
<li key={option.get('title')}> <li key={option.get('title')}>
<span className='poll__input disabled' /> <label className='poll__option editable'>
{/* FIXME: does not support multiple choice, #35632 */}
<EmojiHTML <span className='poll__input' />
as="span" <EmojiHTML
className='poll__option__text translate' as="span"
htmlString={emojify(escapeTextContentForBrowser(option.get('title')), emojiMap)} className='poll__option__text translate'
lang={language} htmlString={emojify(escapeTextContentForBrowser(option.get('title')), emojiMap)}
/> lang={language}
/>
</label>
</li> </li>
))} ))}
</ul> </ul>