Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « components « security_reports « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b1cbfe218bd8c191ba20ac67809587b6cade2c6 (plain)
1
2
3
4
5
6
7
8
export const SEVERITY_CLASS_NAME_MAP = {
  critical: 'text-danger-800',
  high: 'text-danger-600',
  medium: 'text-warning-400',
  low: 'text-warning-200',
  info: 'text-primary-400',
  unknown: 'text-secondary-400',
};