diff --git a/ui-ngx/src/app/modules/home/pages/profile/profile.component.html b/ui-ngx/src/app/modules/home/pages/profile/profile.component.html
index eaca7133a0..f1a42344fb 100644
--- a/ui-ngx/src/app/modules/home/pages/profile/profile.component.html
+++ b/ui-ngx/src/app/modules/home/pages/profile/profile.component.html
@@ -57,13 +57,13 @@
language.language
-
+
{{ lang ? ('language.locales.' + lang | translate) : ''}}
-
+
,
private route: ActivatedRoute,
@@ -55,6 +57,7 @@ export class ProfileComponent extends PageComponent implements OnInit, HasConfir
public dialogService: DialogService,
public fb: FormBuilder) {
super(store);
+ this.authUser = getCurrentAuthUser(this.store);
}
ngOnInit() {
@@ -134,4 +137,8 @@ export class ProfileComponent extends PageComponent implements OnInit, HasConfir
return this.profile;
}
+ isSysAdmin(): boolean {
+ return this.authUser.authority === Authority.SYS_ADMIN;
+ }
+
}