Fix rendering of poll options in status history modal (#35633)
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user