Fix naming

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2024-08-17 12:20:47 +02:00
parent 095b0be847
commit ad96be0f70
Signed by: luzifer
SSH Key Fingerprint: SHA256:/xtE5lCgiRDQr8SLxHMS92ZBlACmATUmF1crK16Ks4E

View File

@ -1,6 +1,6 @@
import { createRouter, createWebHashHistory, type RouteRecordRaw } from 'vue-router' 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 ChannelOverview from './components/channelOverview.vue'
import ChannelPermissions from './components/channelPermissions.vue' import ChannelPermissions from './components/channelPermissions.vue'
import Dashboard from './components/dashboard.vue' import Dashboard from './components/dashboard.vue'
@ -14,7 +14,7 @@ const routes = [
// General settings // General settings
{ {
component: BothAuth, component: BotAuth,
name: 'botAuth', name: 'botAuth',
path: '/bot-auth', path: '/bot-auth',
}, },
@ -28,7 +28,8 @@ const routes = [
{ {
component: ChannelPermissions, component: ChannelPermissions,
name: 'channelPermissions', name: 'channelPermissions',
path: ':channel', props: true, path: ':channel',
props: true,
}, },
], ],
path: '/channels', path: '/channels',