浏览代码

fix

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

正在加载...
取消
保存