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.size}} // outputs sm
<div local-class={{this.size}}> // throws error Uncaught (in promise) Error: Compile Error: size
is not a helper
<UiIcon @name='logo' />
</div>
In particular, using local-class={{this.size}} throws the error:
Uncaught (in promise) Error: Compile Error: size is not a helper
But instead, using local-class="{{this.size}}" works ok
The text was updated successfully, but these errors were encountered:
gvocale
changed the title
Glimmer component and local-class
local-class={{this.size}} throws an error, but local-class="{{this.size}}" is ok
Jan 30, 2020
gvocale
changed the title
local-class={{this.size}} throws an error, but local-class="{{this.size}}" is oklocal-class={{this.size}} throws an error, but local-class="{{this.size}}" is ok
Jan 30, 2020
gvocale
changed the title
local-class={{this.size}} throws an error, but local-class="{{this.size}}" is ok
local-class={{this.size}} throws an error, but local-class="{{this.size}}" is ok
Jan 30, 2020
In a glimmer component, using ember-css-modules, why the following?
In particular, using
local-class={{this.size}}
throws the error:But instead, using
local-class="{{this.size}}"
works okThe text was updated successfully, but these errors were encountered: