2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00

fix linting

This commit is contained in:
Joffrey JAFFEUX 2018-02-13 18:12:30 +01:00 committed by GitHub
parent 20123271d2
commit d525a644d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -109,7 +109,7 @@ export default Ember.Mixin.create({
const keyCode = event.keyCode || event.which;
if (keyCode === this.keys.BACKSPACE && typeof this.backspaceFromFilter === "function") {
this.backspaceFromFilter(event)
this.backspaceFromFilter(event);
};
if (keyCode === this.keys.TAB) this.tabFromFilter(event);
if (keyCode === this.keys.ESC) this.escapeFromFilter(event);