From 119d6a1902e8b975c8296792204da9105e3a1eeb Mon Sep 17 00:00:00 2001 From: Caspar Neumann Date: Wed, 15 Nov 2023 15:26:09 +0100 Subject: [PATCH] fix routes --- src/router/routes.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/router/routes.ts b/src/router/routes.ts index e73445a20b..c5f93838c8 100644 --- a/src/router/routes.ts +++ b/src/router/routes.ts @@ -280,13 +280,13 @@ export const routes: Array = [ }, { path: `/h5p/player/:id(${REGEX_H5P_ID})`, - component: () => import("../pages/H5PPlayer.page.vue"), + component: () => import("../pages/h5p/H5PPlayer.page.vue"), name: "h5pPlayer", //beforeEnter: createPermissionGuard(["H5P"]), }, { path: `/h5p/editor/:id(${REGEX_H5P_ID})?`, - component: () => import("../pages/H5PEditor.page.vue"), + component: () => import("../pages/h5p/H5PEditor.page.vue"), name: "h5pEditor", beforeEnter: validateQueryParameters({ parentType: isEnum(H5PContentParentType),