ui: Add missed calls to `_super` (#6595)
This commit is contained in:
parent
acdd22988a
commit
976941ea5c
|
@ -10,9 +10,11 @@ import { get } from '@ember/object';
|
||||||
*/
|
*/
|
||||||
export default Mixin.create({
|
export default Mixin.create({
|
||||||
beforeModel: function() {
|
beforeModel: function() {
|
||||||
|
this._super(...arguments);
|
||||||
this.repo.invalidate();
|
this.repo.invalidate();
|
||||||
},
|
},
|
||||||
deactivate: function() {
|
deactivate: function() {
|
||||||
|
this._super(...arguments);
|
||||||
// TODO: This is dependent on ember-changeset
|
// TODO: This is dependent on ember-changeset
|
||||||
// Change changeset to support ember-data props
|
// Change changeset to support ember-data props
|
||||||
const item = get(this.controller, 'item.data');
|
const item = get(this.controller, 'item.data');
|
||||||
|
|
Loading…
Reference in New Issue