From 3bb52e7555f688fa896b16117ba67a46af256c66 Mon Sep 17 00:00:00 2001 From: Jonathan Bourdon Date: Tue, 22 Apr 2025 15:36:38 -0400 Subject: [PATCH] feat: Update banner system components --- frontend/src/views/creators/ActualBanner.vue | 22 ++--- frontend/src/views/creators/BannerActions.vue | 92 ++++++------------- frontend/src/views/creators/BannerEditor.vue | 76 ++++++++++++--- 3 files changed, 100 insertions(+), 90 deletions(-) diff --git a/frontend/src/views/creators/ActualBanner.vue b/frontend/src/views/creators/ActualBanner.vue index 915d708..959b3da 100644 --- a/frontend/src/views/creators/ActualBanner.vue +++ b/frontend/src/views/creators/ActualBanner.vue @@ -2,13 +2,13 @@
@@ -19,7 +19,7 @@ >
mdi-pencil
@@ -28,11 +28,10 @@
- + @@ -41,11 +40,11 @@ import BannerEditor from "@/views/creators/BannerEditor.vue"; import {computed, ref} from "vue"; import {useBrandingStore} from "@/stores/brandingStore.js"; import {useAuthStore} from "@/stores/authStore.js"; -import { useI18n } from 'vue-i18n'; +import {useI18n} from 'vue-i18n'; const authStore = useAuthStore(); const brandingStore = useBrandingStore(); -const { t } = useI18n(); +const {t} = useI18n(); // State const showTint = ref(false); @@ -62,9 +61,6 @@ const isCurrentCreator = computed(() => { diff --git a/frontend/src/views/creators/BannerActions.vue b/frontend/src/views/creators/BannerActions.vue index a923512..64bbf49 100644 --- a/frontend/src/views/creators/BannerActions.vue +++ b/frontend/src/views/creators/BannerActions.vue @@ -1,7 +1,6 @@