You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 1, 2023. It is now read-only.
Warning: Received `false` for a non-boolean attribute `invalid`.
If you want to write it to the DOM, pass a string instead: invalid="false" or invalid={value.toString()}.
If you used to conditionally omit it with invalid={condition && value}, pass invalid={condition ? value : undefined} instead.
...when applying this invalid prop:
<Inputinvalid={hasError}/>// hasError === false
I suppose the component should turn this boolean into a 'true' or 'false' string.
Edit: a workaround is using the aria-invalid prop as it is also gets styled properly:
I received the following error...
...when applying this
invalid
prop:I suppose the component should turn this boolean into a
'true'
or'false'
string.Edit: a workaround is using the
aria-invalid
prop as it is also gets styled properly:The text was updated successfully, but these errors were encountered: