We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stencil version:
@stencil/[email protected]
I'm submitting a:
[x] bug report
Current behavior:
<input spellCheck={false} />
...renders to:
<input>
While...
<input spellCheck="false" />
...leads to an error:
[ ERROR ] TypeScript: input.tsx: Type 'string' is not assignable to type 'boolean | undefined'.
My current workaround that works fine...
<input spellCheck={"false" as any as boolean} />
<input spellcheck="false">
Expected behavior:
The text was updated successfully, but these errors were encountered:
caf03fa
I'm on version @stencil/core v1.13.0 this: <input spellcheck="false" /> always renders to: <input spellcheck="true" />
@stencil/core v1.13.0
<input spellcheck="false" />
<input spellcheck="true" />
Sorry, something went wrong.
i have the same problem, open a new issue
True, "false" renders to "true". Passing it as a boolean works, however:
<input spellcheck={false} />
No branches or pull requests
Stencil version:
I'm submitting a:
[x] bug report
Current behavior:
...renders to:
While...
...leads to an error:
My current workaround that works fine...
...renders to:
Expected behavior:
...renders to:
The text was updated successfully, but these errors were encountered: