mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Criticality badge medium impact bug / typo fixed (#213456)
## Summary This PR fixes the colour on medium impact showing on asset criticality badges across alerts table. ### Reproduce Bug 1. Kibana latest version 2. Generate entity store data 3. navigate to alerts page, with alerts generated 4. Look at host criticality and user criticality columns 5. Observe that, the badges for these columns are transparent. Hover over to see details. ### Screenshot: Bug  ### Testing Fix Same steps as above, but with this PR, observe that the badged for medium impact now have the relevent colouring enabled. ### Screenshots: Fix in Place Host Criticality, Dark Theme | User Criticality, Dark Theme :-------------------------:|:-------------------------: ! |  Host Criticality, Light Theme | User Criticality, Light Theme :-------------------------:|:-------------------------: ! | 
This commit is contained in:
parent
6b764fb414
commit
c03b8bc661
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ import type { CriticalityLevelWithUnassigned } from '../../../../common/entity_a
|
|||
export const CRITICALITY_LEVEL_COLOR: Record<CriticalityLevelWithUnassigned, string> = {
|
||||
extreme_impact: '#E7664C',
|
||||
high_impact: '#DA8B45',
|
||||
medium_impact: 'D6BF57',
|
||||
medium_impact: '#D6BF57',
|
||||
low_impact: '#54B399',
|
||||
unassigned: euiLightVars.euiColorMediumShade,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue