fix(frontend): naam van user opnieuw tonen in menubar
This commit is contained in:
parent
5bb75ebdf8
commit
50876ce783
1 changed files with 2 additions and 2 deletions
|
@ -11,8 +11,8 @@
|
||||||
|
|
||||||
const role = auth.authState.activeRole;
|
const role = auth.authState.activeRole;
|
||||||
|
|
||||||
const name = "";//Auth.authState.user!.profile.name!;
|
const name = ref(auth.authState.user!.profile.name!);
|
||||||
const initials: string = name
|
const initials: string = name.value
|
||||||
.split(" ")
|
.split(" ")
|
||||||
.map((n) => n[0])
|
.map((n) => n[0])
|
||||||
.join("");
|
.join("");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue