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

Fix dropdown item text
This commit is contained in:
David Yip 2018-01-12 09:09:10 -06:00 committed by GitHub
commit e2ce628724
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -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>
);
}