Skip to content
Snippets Groups Projects
Unverified Commit 17bd9a87 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix wrong color on mentions hidden behind content warning in web UI (#20724)

parent 8c3c6dca
No related branches found
No related tags found
No related merge requests found
......@@ -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, ' '], []);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment