From a75790fc3ccaff8925149bb47d94fd22209108d7 Mon Sep 17 00:00:00 2001 From: Muhsin Keloth Date: Thu, 25 Apr 2024 14:05:53 +0530 Subject: [PATCH] chore: update button --- app/javascript/v3/components/Form/Button.vue | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/app/javascript/v3/components/Form/Button.vue b/app/javascript/v3/components/Form/Button.vue index 04dbb032f..308a80234 100644 --- a/app/javascript/v3/components/Form/Button.vue +++ b/app/javascript/v3/components/Form/Button.vue @@ -4,7 +4,12 @@ :class="buttonClasses" v-bind="$attrs" > - + @@ -43,8 +48,8 @@ const props = defineProps({ validator: value => ['primary', 'secondary', 'danger'].includes(value), }, trailingIcon: { - type: String, - default: '', + type: Boolean, + default: false, }, });