FIX: clicking on themes while editing left a blank screen

This commit is contained in:
Sam 2017-04-13 15:49:46 -04:00
parent 3f4f0b32a9
commit 43e4fc03ef
2 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1,5 @@
export default Ember.Route.extend({
setupController() {
this.controllerFor("adminCustomizeThemes").set("editingTheme", false);
},
});

View File

@ -8,7 +8,6 @@ export default Ember.Route.extend({
setupController(controller, model) {
this._super(controller, model);
// TODO ColorScheme to model
controller.set("editingTheme", false);
},