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
<hr class="foobar" />
Such code is turned into:
<hr class="foobar"></hr>
Which then blows up in Ember's template compiler: <hr> elements do not need end tags. You should remove it:.
<hr> elements do not need end tags. You should remove it:
The text was updated successfully, but these errors were encountered:
Actually this is true also for components:
<FooBar @baz="stuff" />
Becomes:
<FooBar @baz="stuff"></FooBar>
Which is wrong and changes the meaning - the component might be using has-block which will break.
has-block
Sorry, something went wrong.
PageHeader
No branches or pull requests
Such code is turned into:
Which then blows up in Ember's template compiler:
<hr> elements do not need end tags. You should remove it:
.The text was updated successfully, but these errors were encountered: