1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-01 19:45:24 +02:00

Add missing super call in routes

This commit is contained in:
sauls8t 2018-12-20 13:05:06 +00:00
parent 329c43eba0
commit 2042454e77
5 changed files with 13 additions and 3 deletions

View file

@ -56,6 +56,8 @@ export default Route.extend({
},
setupController: function (controller, model) {
this._super(controller, model);
controller.set('model', model);
controller.reset();
},