From acb3ddc73fd7a8240d42774c80c68b5a725c3734 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Wed, 19 Oct 2022 15:40:32 +0200 Subject: [PATCH] feat: use PascalCase for component name --- src/components/tasks/{gantt-chart.vue => GanttChart.vue} | 0 src/views/list/ListGantt.vue | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/components/tasks/{gantt-chart.vue => GanttChart.vue} (100%) 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}>()