edit my details

This commit is contained in:
Julian Krauser 2024-11-20 10:02:25 +01:00
parent 8c5b4429b1
commit 6f135af4a6
7 changed files with 143 additions and 10 deletions

View file

@ -5,7 +5,7 @@
:to="{
name:
overviewFullOverwrite ??
`${rootRoute}${useStagedOverviewLink ? ('-' + overviewOverwrite ?? activeNavigation) : ''}-default`,
`${rootRoute}${useStagedOverviewLink ? '-' + (overviewOverwrite ?? activeNavigation) : ''}-default`,
}"
class="mid:hidden text-primary"
>
@ -37,11 +37,11 @@ export default defineComponent({
props: {
overviewFullOverwrite: {
type: String,
default: "",
default: null,
},
overviewOverwrite: {
type: String,
default: "",
default: null,
},
useStagedOverviewLink: {
type: Boolean,