From bf859e38ee422ec54e563746b96012178ba218a3 Mon Sep 17 00:00:00 2001 From: upsiflu Date: Sun, 8 Dec 2024 21:02:51 +0100 Subject: [PATCH] chore(typo): use existing color name --- front/src/components/common/DangerousButton.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/components/common/DangerousButton.vue b/front/src/components/common/DangerousButton.vue index 8af74f769..5cbef31d3 100644 --- a/front/src/components/common/DangerousButton.vue +++ b/front/src/components/common/DangerousButton.vue @@ -20,7 +20,7 @@ const emit = defineEmits() const props = withDefaults(defineProps(), { action: () => undefined, disabled: false, - confirmColor: 'danger' + confirmColor: 'destructive' }) const showModal = ref(false)