From 8071f3565cf678aa85ca8f8e16109538207b836c Mon Sep 17 00:00:00 2001 From: Paul Valerie GOMA Date: Tue, 5 Aug 2025 15:21:02 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20bug=20fixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/input/VInput.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/input/VInput.vue b/src/components/input/VInput.vue index b59e505..106677f 100644 --- a/src/components/input/VInput.vue +++ b/src/components/input/VInput.vue @@ -70,7 +70,7 @@ const labelState = computed(() => { v-if="props.labelVisible" :for="props.id" :label="props.label" - :required="!props.disabled" + :required="!props.disabled && props.required" :disabled="props.disabled" :type="labelState" :hint="props.hint"