From f54aeb8e0b29a219d42bcc51bed4a30aa81d556f Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 13 Nov 2022 23:06:43 +0100 Subject: [PATCH] fix: rename component imports --- src/router/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/router/index.ts b/src/router/index.ts index af46dd235..fd1eed61f 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -206,7 +206,7 @@ const router = createRouter({ { path: '/namespaces', name: 'namespaces.index', - component: ProjectNamespaces, + component: ListNamespaces, }, { path: '/namespaces/new', @@ -409,7 +409,7 @@ const router = createRouter({ { path: '/teams', name: 'teams.index', - component: ProjectTeamsComponent, + component: ListTeamsComponent, }, { path: '/teams/new', @@ -427,7 +427,7 @@ const router = createRouter({ { path: '/labels', name: 'labels.index', - component: ProjectLabelsComponent, + component: ListLabelsComponent, }, { path: '/labels/new',