mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-17 04:01:29 -05:00
FIX: ESLint failure
This commit is contained in:
parent
3c28eeaae3
commit
24991c4016
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue