Upgrade to Ember 3.7.0

This commit is contained in:
Maja Komel
2019-03-20 12:50:13 +01:00
parent f2c6a160e5
commit f3d0d8fe7d
33 changed files with 222 additions and 166 deletions

View File

@ -134,10 +134,10 @@ export default Ember.Component.extend(
this.removeObserver(
`content.@each.${this.get("nameProperty")}`,
this,
this._compute
"_compute"
);
this.removeObserver(`content.[]`, this, this._compute);
this.removeObserver(`asyncContent.[]`, this, this._compute);
this.removeObserver(`content.[]`, this, "_compute");
this.removeObserver(`asyncContent.[]`, this, "_compute");
},
willComputeAttributes() {},