Merge pull request #321 from KnzkDev/fix/dropdown-text

Fix dropdown item text
th-downstream
David Yip 7 years ago committed by GitHub
commit 895a578030

@ -104,7 +104,10 @@ export default class ComposerOptionsDropdownContentItem extends React.PureCompon
<strong>{text}</strong>
{meta}
</div>
) : <div className='content'>{text}</div>}
) :
<div className='content'>
<strong>{text}</strong>
</div>}
</div>
);
}

Loading…
Cancel
Save