From 135c7f5bbfc49e3193d64d7842584c5a4f627b06 Mon Sep 17 00:00:00 2001 From: Solomon Cammack Date: Sun, 10 Sep 2023 22:19:14 +0100 Subject: [PATCH] Minor comms changes --- .../components/website/dashboard/CommsControls.vue | 13 +++++-------- website/src/views/Dashboard.vue | 10 ++++++---- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/website/src/components/website/dashboard/CommsControls.vue b/website/src/components/website/dashboard/CommsControls.vue index 87fcf73c..d55be2eb 100644 --- a/website/src/components/website/dashboard/CommsControls.vue +++ b/website/src/components/website/dashboard/CommsControls.vue @@ -1,12 +1,9 @@ @@ -14,7 +11,7 @@ import { BButton } from "bootstrap-vue"; export default { - name: "CommsControl", + name: "CommsControls", props: ["match"], components: { BButton }, data: () => ({ diff --git a/website/src/views/Dashboard.vue b/website/src/views/Dashboard.vue index 7446222f..c6b60cd9 100644 --- a/website/src/views/Dashboard.vue +++ b/website/src/views/Dashboard.vue @@ -47,7 +47,7 @@ - + @@ -66,7 +66,9 @@ - + + + @@ -79,7 +81,7 @@ import MatchEditor from "@/components/website/dashboard/MatchEditor"; import { BButton } from "bootstrap-vue"; import { updateAutomaticTitle } from "@/utils/dashboard"; import Predictions from "@/components/website/dashboard/Predictions"; -import CommsControl from "@/components/website/dashboard/CommsControls"; +import CommsControls from "@/components/website/dashboard/CommsControls"; import Commercials from "@/components/website/dashboard/Commercials"; import BroadcastEditor from "@/components/website/dashboard/BroadcastEditor"; import ScheduleEditor from "@/components/website/dashboard/ScheduleEditor"; @@ -95,7 +97,7 @@ import GFXController from "@/views/GFXController.vue"; export default { name: "Dashboard", - components: { GFXController, ThemeLogo, DeskTextEditor, DeskEditor, Bracket, PreviewProgramDisplay, BracketImplications, DashboardModule, DashboardClock, ScheduleEditor, BroadcastEditor, CommsControl, Commercials, Predictions, MatchEditor, MatchThumbnail, BroadcastSwitcher, BButton }, + components: { GFXController, ThemeLogo, DeskTextEditor, DeskEditor, Bracket, PreviewProgramDisplay, BracketImplications, DashboardModule, DashboardClock, ScheduleEditor, BroadcastEditor, CommsControls, Commercials, Predictions, MatchEditor, MatchThumbnail, BroadcastSwitcher, BButton }, data: () => ({ titleProcessing: false }),