Browse Source

Compiler error fixed.

pull/347/head
Sebastian Stehle 7 years ago
parent
commit
3b7bc9e93a
  1. 2
      src/Squidex/app/features/administration/pages/users/users-page.component.html

2
src/Squidex/app/features/administration/pages/users/users-page.component.html

@ -51,7 +51,7 @@
<tbody *ngFor="let userInfo of usersState.users | async; trackBy: trackByUser">
<tr [routerLink]="userInfo.user.id" routerLinkActive="active">
<td class="cell-user">
<img class="user-picture" [attr.alt]="userInfo.user.name" attr="{{userInfo.user.name}}" [attr.src]="userInfo.user | sqxUserDtoPicture" />
<img class="user-picture" title="{{userInfo.user.name}}" [attr.src]="userInfo.user | sqxUserDtoPicture" />
</td>
<td class="cell-auto">
<span class="user-name table-cell">{{userInfo.user.displayName}}</span>

Loading…
Cancel
Save