Fix wrong color on mentions hidden behind content warning in web UI (#20724)
This commit is contained in:
		@@ -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, ' '], []);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user