Florian Eisenmenger il y a 1 an
Parent
révision
6886891c25
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      matsen-tool/src/app/_views/user/user-detail/user-detail.component.ts

+ 1
- 1
matsen-tool/src/app/_views/user/user-detail/user-detail.component.ts Voir le fichier

@@ -74,7 +74,7 @@ export class UserDetailComponent implements OnInit, AfterViewInit {
setIsCurrentUser() {
if (this.accountService.userValue?.userResource) {
let user = this.accountService.userValue?.userResource;
this.isCurrentUser = this.user.id == user?.id;
this.isCurrentUser = this.appHelperService.extractId(this.user.id) == user?.id;
}
}
}

Chargement…
Annuler
Enregistrer