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
ef991d97
Commit
ef991d97
authored
Oct 30, 2018
by
samdbeckham
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removes the unkown overview from the group security dashboard
parent
edd6fc97
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
ee/app/assets/javascripts/security_dashboard/components/vulnerability_count_list.vue
...ecurity_dashboard/components/vulnerability_count_list.vue
+2
-2
ee/app/assets/javascripts/security_dashboard/store/modules/vulnerabilities/constants.js
...rity_dashboard/store/modules/vulnerabilities/constants.js
+0
-1
No files found.
ee/app/assets/javascripts/security_dashboard/components/vulnerability_count_list.vue
View file @
ef991d97
<
script
>
import
{
mapGetters
,
mapState
}
from
'
vuex
'
;
import
VulnerabilityCount
from
'
./vulnerability_count.vue
'
;
import
{
CRITICAL
,
HIGH
,
MEDIUM
,
LOW
,
UNKNOWN
}
from
'
../store/modules/vulnerabilities/constants
'
;
import
{
CRITICAL
,
HIGH
,
MEDIUM
,
LOW
}
from
'
../store/modules/vulnerabilities/constants
'
;
const
SEVERITIES
=
[
CRITICAL
,
HIGH
,
MEDIUM
,
LOW
,
UNKNOWN
];
const
SEVERITIES
=
[
CRITICAL
,
HIGH
,
MEDIUM
,
LOW
];
export
default
{
name
:
'
VulnerabilityCountList
'
,
...
...
ee/app/assets/javascripts/security_dashboard/store/modules/vulnerabilities/constants.js
View file @
ef991d97
...
...
@@ -2,4 +2,3 @@ export const CRITICAL = 'critical';
export
const
HIGH
=
'
high
'
;
export
const
MEDIUM
=
'
medium
'
;
export
const
LOW
=
'
low
'
;
export
const
UNKNOWN
=
'
unknown
'
;
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