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
{{ember-cli-async-buttondefault=(iftrue'Hello''World') }} -- rendes button with `Hello`
{{ember-cli-async-buttondefault=foo}} -- rendes button with `true`
I've tried reproducing the problem with a boilerplate component.
I have created an app/templates/components/x-bar.hbs file with the following content:
{{default}}
Now, in my page template I'm doing this:
{{x-bardefault=(iffoo'Hello''World') }}
It renders as Hello. Thus I conclude that the issue is specific to ember-cli-async-button.
The text was updated successfully, but these errors were encountered:
@lolmaus I suspect this issue is because we are proxying to the component through a helper and your options are being washed out. With emberjs/ember.js#11028 we should be able to support what one want once this gets into Release Ember
In my page controller I have created the following property:
Now, in my page template I'm doing this:
A button with no text as rendered!
At the same time, these work fine:
I've tried reproducing the problem with a boilerplate component.
I have created an
app/templates/components/x-bar.hbs
file with the following content:Now, in my page template I'm doing this:
It renders as
Hello
. Thus I conclude that the issue is specific toember-cli-async-button
.The text was updated successfully, but these errors were encountered: