From ad96be0f70b2c6f6b823ee33acdfd6d2081882a3 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sat, 17 Aug 2024 12:20:47 +0200 Subject: [PATCH] Fix naming Signed-off-by: Knut Ahlers --- src/router.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/router.ts b/src/router.ts index f579aca..902f36b 100644 --- a/src/router.ts +++ b/src/router.ts @@ -1,6 +1,6 @@ import { createRouter, createWebHashHistory, type RouteRecordRaw } from 'vue-router' -import BothAuth from './components/botauth.vue' +import BotAuth from './components/botauth.vue' import ChannelOverview from './components/channelOverview.vue' import ChannelPermissions from './components/channelPermissions.vue' import Dashboard from './components/dashboard.vue' @@ -14,7 +14,7 @@ const routes = [ // General settings { - component: BothAuth, + component: BotAuth, name: 'botAuth', path: '/bot-auth', }, @@ -28,7 +28,8 @@ const routes = [ { component: ChannelPermissions, name: 'channelPermissions', - path: ':channel', props: true, + path: ':channel', + props: true, }, ], path: '/channels',