use scss mode instead of css mode

This commit is contained in:
Sam 2017-04-13 12:05:27 -04:00
parent ee950b419f
commit 37d4dd4a4b
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ export default Ember.Controller.extend({
@computed("fieldName")
activeSectionMode(fieldName) {
return fieldName && fieldName.indexOf("scss") > -1 ? "css" : "html";
return fieldName && fieldName.indexOf("scss") > -1 ? "scss" : "html";
},
@computed("fieldName", "currentTargetName", "model")