Prettier site-settings/group-list.js.es6

This commit is contained in:
Neil Lalonde 2019-04-29 16:26:13 -04:00
parent 1ba72ccab8
commit a00354f11f
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@ import computed from "ember-addons/ember-computed-decorators";
export default Ember.Component.extend({
@computed()
groupChoices() {
return this.site.get('groups').map(g => g.name);
return this.site.get("groups").map(g => g.name);
}
});