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
This rule prevents ambiguity in situations where a yielded block param which starts with a lower case letter is also used within the block itself as an element name.
Examples
This rule forbids the following:
<FooBar as |div|>
<div></div>
</FooBar>
This rule allows the following:
{{#foo-baras |Baz|}}
<Baz />
{{/foo-bar}}
<FooBar as |Baz|>
<Baz />
</FooBar>
{{#withfoo=(component'blah-zorz') as |Div|}}
<Div />
{{/with}}