fix(FormField): add help to aria-describedby attribute (#3691)

This commit is contained in:
Romain Hamel
2025-03-26 13:47:38 +01:00
committed by GitHub
parent a63047b79a
commit 20c33920d0
3 changed files with 3 additions and 1 deletions

View File

@@ -86,6 +86,7 @@ provide(formFieldInjectionKey, computed(() => ({
errorPattern: props.errorPattern,
hint: props.hint,
description: props.description,
help: props.help,
ariaId
}) as FormFieldInjectedOptions<FormFieldProps>))
</script>