Lukas

Results 36 comments of Lukas

Same for me. I was able to [create a reproduction](https://github.com/luxferresum/illegal-set-of-identifier-reproduction).

I really like this, *but* there is one very important use case that we need to cover before we can do this. And this is the `Route#refresh` method. While you...

The problem is that I only want to refresh the current route, not all parent routes.

If we do this I think we *need* `ember new my-app --no-fastboot`! But maybe we should talk a bit more about `ember new` in general? `ember new my-app --yarn --no-welcome...

Could we consider to keep the current hook name but make this an optional feature? That way a lot of apps wouldn't need any code changes to benefit from this.

Indeed, it would be amazing to have this! --- @amk221 indeed `LinkTo` is a place where I missed this a few times. While the solution *is* a getter like this:...

I love how tomdale explained how an edition is both the "start or the end of something"! And I think this is a good argument against a name that spans...

I just wrote essentially a polyfill for this: https://github.com/luxferresum/experimental-set-route-component This is also compatible with `ember-template-imports`, so this works: ``` import Route from '@ember/routing/route'; import { setRouteComponent } from 'experimental-set-route-component'; const...

@nightire > One thing always confuses me and my colleagues is that how ember.js determined the value passed to the one-argument version of {{set}} helper? It does not. So when...

@mehulkar I would say yes to 1) but no to 2). A good real-world example is using `set` with `power-select`: ```hbs {{name}} ``` Also notice you can use `set` inside...