feat: adds instances to usernames

This commit is contained in:
2022-12-23 14:26:30 +01:00
parent d411d2107d
commit 08dcfd179b
3 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,7 @@
nbPopoverTrigger="hover"
nbPopoverPlacement="bottom"
>
{{account.displayName}} <span class="username">@{{account.username}}</span>
{{account.displayName}} <span class="username">@{{account.acct}}</span>
</span>
</th>
<td *ngFor="let list of lists$ | async">

View File

@@ -34,7 +34,7 @@ export class TableComponent {
return accounts.map((account) => {
return {
id: account.id,
username: `@${account.username}`,
username: `@${account.acct}`,
displayName: account.displayName,
url: account.url,
avatar: account.avatar,

View File

@@ -5,7 +5,7 @@
size="medium"
shape="semi-round"
[name]="account.displayName"
[title]="'@' + account.username"
[title]="'@' + account.acct"
[picture]="account.avatar"
>
</nb-user>