Fix dropdown text

This commit is contained in:
ncls7615 2018-01-12 23:18:25 +09:00
parent 9fa79bc317
commit cf5789146b
No known key found for this signature in database
GPG Key ID: 18FE1E1E7098294A
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>
);
}