Seva Baskin

Results 9 comments of Seva Baskin

Same behavior. Unloading all records updates the model counter, but the records are still shown in the list. The list is only refreshed to display correct state after switching tabs...

Resetting individual queryParams in `beforeModel()` is actually broken as well right now (https://github.com/emberjs/ember.js/issues/14606), so hoping will find a way to get this to work.

Current workaround: ```js setup({ queryParams }) { if (this.isPastDate(queryParams.date)) { // ensure fetchData receives correct params in current run-loop queryParams.date = null; next(() => { this.set('date', null); }); } this.fetchData(queryParams);...

Hi Adrien, great to hear it's something that `userTransition` plans to support, appreciate your work on this. The API for multiple elements looks good, and animating multiple elements via data-attributes...

Forgot to mention that `el-transition` returns a promise for both enter/leave, which allows me to sequence animation nicely as well. In case of the closing modal, I can wait for...

Having a similar issue when rendering in fastboot mode in Ember 2.10.0. When trying to `findBy` on an array that's an attribute of a `DS.Model` record: ```javascript record.get('categories').findBy('token', params.category) ```...

Possibly related to https://github.com/emberjs/ember.js/issues/13061 From the comments there tried passing same data via hash as a workaround and it works, but adds a lot of unnecessary complications. A previously simple...

The solution is to add permissions to the `nodejs` user, so it can access `/tmp/.npm`. In ElasticBeanstalk this can be achieved by adding a file `.ebextensions/00_change_npm_permissions.config` with the following contents:...

@IAmJulianAcosta in the `.ebextensions` directory at the root of your elasticbean project.