mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 23:58:06 +01:00
Merge pull request #321 from KnzkDev/fix/dropdown-text
Fix dropdown item text
This commit is contained in:
commit
e2ce628724
1 changed files with 4 additions and 1 deletions
|
@ -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…
Reference in a new issue