Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
28dbd27e
Commit
28dbd27e
authored
May 11, 2020
by
Alexander Turinske
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up component
- create new computed property for button configurations
parent
bf144ed7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
ee/app/assets/javascripts/vulnerabilities/components/header.vue
.../assets/javascripts/vulnerabilities/components/header.vue
+10
-6
No files found.
ee/app/assets/javascripts/vulnerabilities/components/header.vue
View file @
28dbd27e
...
...
@@ -56,16 +56,20 @@ export default {
},
computed
:
{
actions
()
{
return
{
issueCreation
:
{
name
:
s__
(
'
ciReport|Create issue
'
),
isLoading
:
this
.
isProcessing
,
action
:
'
createIssue
'
,
},
};
},
actionButtons
()
{
const
buttons
=
[];
const
issueButton
=
{
name
:
s__
(
'
ciReport|Create issue
'
),
isLoading
:
this
.
isProcessing
,
action
:
'
createIssue
'
,
};
if
(
!
this
.
hasIssue
)
{
buttons
.
push
(
issueButt
on
);
buttons
.
push
(
this
.
actions
.
issueCreati
on
);
}
return
buttons
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment