Fix eslint

This commit is contained in:
Jacob Schatz 2018-01-18 12:30:45 -05:00
parent 77fe779fa9
commit 0731ff79b8
1 changed files with 2 additions and 4 deletions

View File

@ -153,12 +153,10 @@
return !!this.state.updatedAt;
},
issueChanged() {
let descriptionChanged =
const descriptionChanged =
this.initialDescriptionText !== this.store.formState.description;
let titleChanged =
const titleChanged =
this.initialTitleText !== this.store.formState.title;
return descriptionChanged || titleChanged;
},
},