FIX: ESLint failure

This commit is contained in:
Robin Ward 2015-09-15 16:57:57 -04:00
parent 3c28eeaae3
commit 24991c4016
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ export default Ember.Controller.extend({
name: this.get("model.type"),
start_date: this.get('startDate'),
end_date: this.get('endDate'),
category_id: this.get('categoryId') == 'all' ? undefined : this.get('categoryId')
category_id: this.get('categoryId') === 'all' ? undefined : this.get('categoryId')
}).then(outputExportResult);
}
}