Skip to content
Snippets Groups Projects
Commit 7fbc04f1 authored by Julian's avatar Julian
Browse files

Fix import of timetable component in chronos menu

parent b23d8b5f
No related branches found
No related tags found
1 merge request!329Introduce substitution to do list
Pipeline #186062 failed
import { hasPersonValidator } from "aleksis.core/routeValidators";
import Timetable from "./components/Timetable.vue";
import { DateTime } from "luxon";
......@@ -14,7 +13,7 @@ export default {
children: [
{
path: "timetable/",
component: Timetable,
component: () => import("./components/Timetable.vue"),
name: "chronos.timetable",
meta: {
inMenu: true,
......@@ -27,7 +26,7 @@ export default {
},
{
path: "timetable/:type/:id/",
component: Timetable,
component: () => import("./components/Timetable.vue"),
name: "chronos.timetableWithId",
meta: {
permission: "chronos.view_timetable_overview_rule",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment