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
{{model}} in route templates is transformed to {{this.model}} but should be {{@model}} in my opinion. At least if ember-source is >= 3.14 and if the backing controller does not have a model property.
The text was updated successfully, but these errors were encountered:
The issue with this is that @model will not match / handle special handling that folks have done in setupController (and therefore make the codemod less safe).
{{model}}
in route templates is transformed to{{this.model}}
but should be{{@model}}
in my opinion. At least ifember-source
is >= 3.14 and if the backing controller does not have amodel
property.The text was updated successfully, but these errors were encountered: