Archived
2
0
Fork 0

Merge branch 'bump-version' into gearheads

This commit is contained in:
Ducky 2022-11-15 02:54:57 +00:00
commit f9443a413b
4 changed files with 9 additions and 3 deletions

View file

@ -249,7 +249,7 @@ class StatusContent extends React.PureComponent {
let mentionsPlaceholder = '';
const mentionLinks = status.get('mentions').map(item => (
<Link to={`/@${item.get('acct')}`} key={item.get('id')} className='mention'>
<Link to={`/@${item.get('acct')}`} key={item.get('id')} className='status-link mention'>
@<span>{item.get('username')}</span>
</Link>
)).reduce((aggregate, item) => [...aggregate, item, ' '], []);