Commit 9eae11aa authored by Clement Ho's avatar Clement Ho

Merge branch '6709-security-dashboard-unkown-removal' into 'master'

Removes the unknown overview from the group security dashboard

See merge request gitlab-org/gitlab-ee!8147
parents b8d92239 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',
......
......@@ -2,4 +2,3 @@ export const CRITICAL = 'critical';
export const HIGH = 'high';
export const MEDIUM = 'medium';
export const LOW = 'low';
export const UNKNOWN = 'unknown';
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