From 7cb1fbdd26d5add98ac1b27db9e0861854d8344c Mon Sep 17 00:00:00 2001 From: ArneBo Date: Mon, 22 Sep 2025 16:49:48 +0200 Subject: [PATCH] fix(lint) --- front/src/components/common/DangerousButton.vue | 2 +- front/src/components/ui/Modal.vue | 8 ++++---- front/src/views/channels/DetailBase.vue | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/front/src/components/common/DangerousButton.vue b/front/src/components/common/DangerousButton.vue index 11190ad29..0dd5b396a 100644 --- a/front/src/components/common/DangerousButton.vue +++ b/front/src/components/common/DangerousButton.vue @@ -49,7 +49,7 @@ const confirm = () => { diff --git a/front/src/components/ui/Modal.vue b/front/src/components/ui/Modal.vue index 60091ab1a..852f80475 100644 --- a/front/src/components/ui/Modal.vue +++ b/front/src/components/ui/Modal.vue @@ -14,7 +14,7 @@ const { t } = useI18n() const props = defineProps<{ title: string, overPopover?: true, - isDestructive?: true, + isdestructive?: true, cancel?: string | true, icon?: string, autofocus?: true | 'off' @@ -56,7 +56,7 @@ onKeyboardShortcut('escape', () => { isOpen.value = false }) class="funkwhale modal" :class="[ { - 'isDestructive': isDestructive, + 'isdestructive': isdestructive, 'has-alert': !!$slots.alert, 'over-popover': overPopover, } @@ -91,7 +91,7 @@ onKeyboardShortcut('escape', () => { isOpen.value = false }) v-if="title !== ''" :h2="title" section-heading - :class="{ 'destructive-header': destructive }" + :class="{ 'destructive-header': isdestructive }" />