diff --git a/src/components/tasks/gantt-chart.vue b/src/components/tasks/GanttChart.vue similarity index 100% rename from src/components/tasks/gantt-chart.vue rename to src/components/tasks/GanttChart.vue diff --git a/src/views/list/ListGantt.vue b/src/views/list/ListGantt.vue index 9534968c6..7eb5ae737 100644 --- a/src/views/list/ListGantt.vue +++ b/src/views/list/ListGantt.vue @@ -64,7 +64,7 @@ import type {ITask} from '@/modelTypes/ITask' type Options = Flatpickr.Options.Options -const GanttChart = createAsyncComponent(() => import('@/components/tasks/gantt-chart.vue')) +const GanttChart = createAsyncComponent(() => import('@/components/tasks/GanttChart.vue')) const props = defineProps<{route: RouteLocationNormalized}>()