Commit ef991d97 authored by samdbeckham's avatar samdbeckham

Removes the unkown overview from the group security dashboard

parent edd6fc97
<script> <script>
import { mapGetters, mapState } from 'vuex'; import { mapGetters, mapState } from 'vuex';
import VulnerabilityCount from './vulnerability_count.vue'; 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 { export default {
name: 'VulnerabilityCountList', name: 'VulnerabilityCountList',
......
...@@ -2,4 +2,3 @@ export const CRITICAL = 'critical'; ...@@ -2,4 +2,3 @@ export const CRITICAL = 'critical';
export const HIGH = 'high'; export const HIGH = 'high';
export const MEDIUM = 'medium'; export const MEDIUM = 'medium';
export const LOW = 'low'; 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