Skip to content

Commit 69862ea

Browse files
committed
fix(VNumberInupt): respect error prop
fixes #22451
1 parent f448ddd commit 69862ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/vuetify/src/components/VNumberInput/VNumberInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ export const VNumberInput = genericComponent<VNumberInputSlots>()({
493493
v-model={ inputText.value }
494494
v-model:focused={ isFocused.value }
495495
validationValue={ model.value }
496-
error={ isOutOfRange.value || undefined }
496+
error={ props.error || isOutOfRange.value || undefined }
497497
onBeforeinput={ onBeforeinput }
498498
onFocus={ onFocus }
499499
onBlur={ onBlur }

0 commit comments

Comments
 (0)