Commit 704df448 authored by Dave Pisek's avatar Dave Pisek

Fix linting error

parent cbe9a4f1
......@@ -53,10 +53,10 @@ export default {
);
},
createIssueButtonLabel() {
const {
$options: { i18n },
} = this;
return this.isJiraVulnerabilityIssuesEnabled ? i18n.createJiraIssue : i18n.createIssue;
const { $options } = this;
return this.isJiraVulnerabilityIssuesEnabled
? $options.i18n.createJiraIssue
: $options.i18n.createIssue;
},
},
methods: {
......
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