From aeb0d6268992c57e5fa3d26978af8ade6b262cd5 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sat, 13 Jul 2024 11:05:38 +0200 Subject: [PATCH] Add stub for eventlog Signed-off-by: Knut Ahlers --- src/components/dashboard.vue | 4 +++- src/components/dashboard/eventlog.vue | 20 ++++++++++++++++++++ src/langs/en.json | 3 +++ 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 src/components/dashboard/eventlog.vue diff --git a/src/components/dashboard.vue b/src/components/dashboard.vue index 0e4bbc3..818b5ad 100644 --- a/src/components/dashboard.vue +++ b/src/components/dashboard.vue @@ -15,7 +15,7 @@
- +
@@ -28,6 +28,7 @@ import DashboardActiveRaffles from './dashboard/activeRaffles.vue' import DashboardBotScopes from './dashboard/scopes.vue' import DashboardChangelog from './dashboard/changelog.vue' +import DashboardEventlog from './dashboard/eventlog.vue' import DashboardHealthCheck from './dashboard/healthcheck.vue' import { defineComponent } from 'vue' @@ -36,6 +37,7 @@ export default defineComponent({ DashboardActiveRaffles, DashboardBotScopes, DashboardChangelog, + DashboardEventlog, DashboardHealthCheck, }, diff --git a/src/components/dashboard/eventlog.vue b/src/components/dashboard/eventlog.vue new file mode 100644 index 0000000..b3f66f2 --- /dev/null +++ b/src/components/dashboard/eventlog.vue @@ -0,0 +1,20 @@ + + + diff --git a/src/langs/en.json b/src/langs/en.json index 03db703..0eed24d 100644 --- a/src/langs/en.json +++ b/src/langs/en.json @@ -12,6 +12,9 @@ "fullLink": "See full changelog in [History.md](https://github.com/Luzifer/twitch-bot/blob/master/History.md) on Github", "heading": "Changelog" }, + "eventlog": { + "heading": "Eventlog" + }, "healthCheck": { "caption": "Checks OK", "header": "Bot-Health"