Commit 32a97ef1 authored by Phil Hughes's avatar Phil Hughes Committed by Fatih Acet

Fixed JS lint errors

parent a51aa6ab
...@@ -66,9 +66,8 @@ ...@@ -66,9 +66,8 @@
removeSelectedIssue(issue, forcePurge = false) { removeSelectedIssue(issue, forcePurge = false) {
if (this.store.activeTab === 'all' || forcePurge) { if (this.store.activeTab === 'all' || forcePurge) {
this.store.selectedIssues = this.store.selectedIssues.filter((fIssue) => { this.store.selectedIssues = this.store.selectedIssues
return fIssue.id !== issue.id; .filter(fIssue => fIssue.id !== issue.id);
});
} }
} }
......
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