We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d48d34 commit ccdcbd7Copy full SHA for ccdcbd7
packages/kit-styled/src/components/input/input.tsx
@@ -14,7 +14,7 @@ export const Input = component$<InputProps>(
14
<input
15
{...props}
16
aria-errormessage={`${inputId}-error`}
17
- aria-invaid={!!error}
+ aria-invalid={!!error}
18
// workaround to support two way data-binding on the Input component (https://github.com/QwikDev/qwik/issues/3926)
19
value={valueSig ? valueSig.value : value}
20
onInput$={valueSig ? $((__, el) => (valueSig.value = el.value)) : onInput$}
0 commit comments