FIX: Resolve yarn lint complaint
This commit is contained in:
parent
a4665c27e8
commit
26ccc36b5b
|
@ -67,9 +67,11 @@ export default Ember.Controller.extend({
|
|||
|
||||
@computed("groups")
|
||||
groupOptions(groups) {
|
||||
return groups.filter(g => g.id !== 0).map(g => {
|
||||
return { id: g.id.toString(), name: g.name };
|
||||
});
|
||||
return groups
|
||||
.filter((g) => g.id !== 0)
|
||||
.map((g) => {
|
||||
return { id: g.id.toString(), name: g.name };
|
||||
});
|
||||
},
|
||||
|
||||
@computed("selectedItem", "selectedItem.dirty")
|
||||
|
|
Loading…
Reference in New Issue