feat: adds instances to usernames
This commit is contained in:
@@ -35,7 +35,7 @@
|
|||||||
nbPopoverTrigger="hover"
|
nbPopoverTrigger="hover"
|
||||||
nbPopoverPlacement="bottom"
|
nbPopoverPlacement="bottom"
|
||||||
>
|
>
|
||||||
{{account.displayName}} <span class="username">@{{account.username}}</span>
|
{{account.displayName}} <span class="username">@{{account.acct}}</span>
|
||||||
</span>
|
</span>
|
||||||
</th>
|
</th>
|
||||||
<td *ngFor="let list of lists$ | async">
|
<td *ngFor="let list of lists$ | async">
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ export class TableComponent {
|
|||||||
return accounts.map((account) => {
|
return accounts.map((account) => {
|
||||||
return {
|
return {
|
||||||
id: account.id,
|
id: account.id,
|
||||||
username: `@${account.username}`,
|
username: `@${account.acct}`,
|
||||||
displayName: account.displayName,
|
displayName: account.displayName,
|
||||||
url: account.url,
|
url: account.url,
|
||||||
avatar: account.avatar,
|
avatar: account.avatar,
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
size="medium"
|
size="medium"
|
||||||
shape="semi-round"
|
shape="semi-round"
|
||||||
[name]="account.displayName"
|
[name]="account.displayName"
|
||||||
[title]="'@' + account.username"
|
[title]="'@' + account.acct"
|
||||||
[picture]="account.avatar"
|
[picture]="account.avatar"
|
||||||
>
|
>
|
||||||
</nb-user>
|
</nb-user>
|
||||||
|
|||||||
Reference in New Issue
Block a user