mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 22:48:07 +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>
|
<strong>{text}</strong>
|
||||||
{meta}
|
{meta}
|
||||||
</div>
|
</div>
|
||||||
) : <div className='content'>{text}</div>}
|
) :
|
||||||
|
<div className='content'>
|
||||||
|
<strong>{text}</strong>
|
||||||
|
</div>}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue