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

Fix linting error

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