Display nicename in dashboard
This commit is contained in:
@@ -10,9 +10,6 @@ const props = defineProps({
|
||||
tenant: String,
|
||||
currentPath: String,
|
||||
})
|
||||
|
||||
console.log(props.currentPath)
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@@ -68,7 +65,11 @@ console.log(props.currentPath)
|
||||
|
||||
<div class="main">
|
||||
<div class="header">
|
||||
<div class="left-side"><h1>{{ props.title }}</h1></div>
|
||||
<div class="left-side">
|
||||
<h1>{{ props.title }}</h1>
|
||||
<label id="show_username" v-if="props.user !== null">Willkommen, {{ props.user.nicename }}</label>
|
||||
Test
|
||||
</div>
|
||||
<div class="user-info" v-if="props.user !== null">
|
||||
<a href="/messages" class="header-link-anonymous" title="Meine Nachrichten">
|
||||
<Icon name="envelope" />
|
||||
|
||||
Reference in New Issue
Block a user