oliverlangan
oliverlangan
Plus one on this. I don't find the way `ember-changeset` works with relationships to be at all clear. I am trying to work around it, and @richbrown would definitely be...
@webark you're right, it clearly doesn't. We added this so that we can put our own indicator on the page and not redraw the whole page. But the drawback is...
How would one change configuration options (e.g. adding sourceDirs) in an addon?
If an `await` call to the API fails, it throws an exception into the `catch` block. (Or if resolved with `then`, into the `catch` handler.)
np, thanks Chris for all you do.
I've run into this as well, and don't think it is an error. The object being passed to `compute` is not changing—only a property on the object is changing.
(From Slack): I was wondering how to do `positionalParams` with es6 class syntax. Turns out it is easier and cleaner than using `reopenClass`: ```ts class Foo extends Component { static...
I think this may be a dup of https://github.com/emberjs/ember.js/issues/12473
Still happening in 4.3.
Still happening in 4.3. My workaround—admittedly not great—is to toggle the `refreshModel` property to false before aborting the transition, and then back to true. ``` async willTransition(transition: Transition) { if...