Fix display name being displayed instead of domain in remote reports (#31613)
This commit is contained in:
		@@ -42,19 +42,11 @@ export const NotificationAdminReport: React.FC<{
 | 
			
		||||
 | 
			
		||||
  if (!account || !targetAccount) return null;
 | 
			
		||||
 | 
			
		||||
  const domain = account.acct.split('@')[1];
 | 
			
		||||
 | 
			
		||||
  const values = {
 | 
			
		||||
    name: (
 | 
			
		||||
      <bdi
 | 
			
		||||
        dangerouslySetInnerHTML={{ __html: account.get('display_name_html') }}
 | 
			
		||||
      />
 | 
			
		||||
    ),
 | 
			
		||||
    target: (
 | 
			
		||||
      <bdi
 | 
			
		||||
        dangerouslySetInnerHTML={{
 | 
			
		||||
          __html: targetAccount.get('display_name_html'),
 | 
			
		||||
        }}
 | 
			
		||||
      />
 | 
			
		||||
    ),
 | 
			
		||||
    name: <bdi>{domain ?? `@${account.acct}`}</bdi>,
 | 
			
		||||
    target: <bdi>@{targetAccount.acct}</bdi>,
 | 
			
		||||
    category: intl.formatMessage(messages[report.category]),
 | 
			
		||||
    count: report.status_ids.length,
 | 
			
		||||
  };
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user