Fix selection of pages where chrome is not shown

This commit is contained in:
Elia Bieri 2024-10-01 08:43:37 +02:00
parent 82f01dbcf0
commit 60f0582a1d
1 changed files with 4 additions and 4 deletions

View File

@ -188,6 +188,10 @@ const router = createRouter({
component: () => import("@/pages/userProfile/CompetenceProfilePage.vue"), component: () => import("@/pages/userProfile/CompetenceProfilePage.vue"),
props: true, props: true,
name: "profileCompetence", name: "profileCompetence",
meta: {
hideChrome: true,
showCloseButton: true,
},
children: [ children: [
{ {
path: "", path: "",
@ -196,10 +200,6 @@ const router = createRouter({
import( import(
"@/components/selfEvaluationFeedback/SelfEvaluationAndFeedbackOverview.vue" "@/components/selfEvaluationFeedback/SelfEvaluationAndFeedbackOverview.vue"
), ),
meta: {
hideChrome: true,
showCloseButton: true,
},
}, },
{ {
path: "evaluations", path: "evaluations",