Commit 0731ff79 authored by Jacob Schatz's avatar Jacob Schatz

Fix eslint

parent 77fe779f
...@@ -153,12 +153,10 @@ ...@@ -153,12 +153,10 @@
return !!this.state.updatedAt; return !!this.state.updatedAt;
}, },
issueChanged() { issueChanged() {
let descriptionChanged = const descriptionChanged =
this.initialDescriptionText !== this.store.formState.description; this.initialDescriptionText !== this.store.formState.description;
const titleChanged =
let titleChanged =
this.initialTitleText !== this.store.formState.title; this.initialTitleText !== this.store.formState.title;
return descriptionChanged || titleChanged; return descriptionChanged || titleChanged;
}, },
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment