From 39c992842154b53a39d5c82ac6db746e2279073f Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 16 Mar 2024 13:13:16 +0100 Subject: [PATCH] fix(views): do not load views async --- frontend/src/router/index.ts | 2 +- frontend/src/views/project/ProjectView.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/router/index.ts b/frontend/src/router/index.ts index 91454b22b..a3a4a89f9 100644 --- a/frontend/src/router/index.ts +++ b/frontend/src/router/index.ts @@ -32,7 +32,7 @@ const NewLabelComponent = () => import('@/views/labels/NewLabel.vue') const MigrationComponent = () => import('@/views/migrate/Migration.vue') const MigrationHandlerComponent = () => import('@/views/migrate/MigrationHandler.vue') // Project View -const ProjectView = () => import('@/views/project/ProjectView.vue') +import ProjectView from '@/views/project/ProjectView.vue' const ProjectInfo = () => import('@/views/project/ProjectInfo.vue') // Project Settings diff --git a/frontend/src/views/project/ProjectView.vue b/frontend/src/views/project/ProjectView.vue index df905e98c..19b13bae5 100644 --- a/frontend/src/views/project/ProjectView.vue +++ b/frontend/src/views/project/ProjectView.vue @@ -1,12 +1,12 @@