Florian Eisenmenger 1年前
コミット
6886891c25
1個のファイルの変更1行の追加1行の削除
  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 ファイルの表示

@@ -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;
}
}
}

読み込み中…
キャンセル
保存