Fix avatar in report page

This commit is contained in:
Chocobozzz 2021-05-03 11:19:05 +02:00
parent 1fd61899ea
commit 12e4154917
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
<a [routerLink]="[ '.' ]" [queryParams]="{ 'search': 'reporter:&quot;' + abuse.reporterAccount.displayName + '&quot;' }"
class="chip"
>
<my-actor-avatar [account]="abuse.reporterAccount"></my-actor-avatar>
<my-actor-avatar size="18" [account]="abuse.reporterAccount"></my-actor-avatar>
<div>
<span class="text-muted">{{ abuse.reporterAccount.nameWithHost }}</span>
</div>
@ -30,7 +30,7 @@
<a [routerLink]="[ '.' ]" [queryParams]="{ 'search': 'reportee:&quot;' +abuse.flaggedAccount.displayName + '&quot;' }"
class="chip"
>
<my-actor-avatar [account]="abuse.flaggedAccount"></my-actor-avatar>
<my-actor-avatar size="18" [account]="abuse.flaggedAccount"></my-actor-avatar>
<div>
<span class="text-muted">{{ abuse.flaggedAccount ? abuse.flaggedAccount.nameWithHost : '' }}</span>
</div>