Skip to content

Commit ccdcbd7

Browse files
authored
stlyed: Fixed typo in aria label on input
1 parent 6d48d34 commit ccdcbd7

File tree

1 file changed

+1
-1
lines changed
  • packages/kit-styled/src/components/input

1 file changed

+1
-1
lines changed

packages/kit-styled/src/components/input/input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const Input = component$<InputProps>(
1414
<input
1515
{...props}
1616
aria-errormessage={`${inputId}-error`}
17-
aria-invaid={!!error}
17+
aria-invalid={!!error}
1818
// workaround to support two way data-binding on the Input component (https://github.com/QwikDev/qwik/issues/3926)
1919
value={valueSig ? valueSig.value : value}
2020
onInput$={valueSig ? $((__, el) => (valueSig.value = el.value)) : onInput$}

0 commit comments

Comments
 (0)