File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 15
15
*/
16
16
import { TIMELINE_STATUS } from '@Shared/constants'
17
17
import { ReactComponent as ICAborted } from '@Icons/ic-aborted.svg'
18
- import { ReactComponent as ICFailure } from '@Icons/ic-failure .svg'
18
+ import { ReactComponent as ICErrorCross } from '@Icons/ic-error-cross .svg'
19
19
import {
20
20
TriggerHistoryFilterCriteriaProps ,
21
21
DeploymentHistoryResultObject ,
@@ -142,7 +142,9 @@ export const getStageStatusIcon = (status: StageStatusType): JSX.Element => {
142
142
}
143
143
144
144
const renderAbortedTriggerIcon = ( ) : JSX . Element => < ICAborted className = "icon-dim-20 dc__no-shrink" />
145
- const renderFailedTriggerIcon = ( ) : JSX . Element => < ICFailure className = "icon-dim-20 dc__no-shrink" />
145
+ const renderFailedTriggerIcon = ( ) : JSX . Element => (
146
+ < ICErrorCross className = "icon-dim-20 dc__no-shrink ic-error-cross-red" />
147
+ )
146
148
const renderProgressingTriggerIcon = ( ) : JSX . Element => (
147
149
< ICInProgress className = "dc__no-shrink icon-dim-20 ic-in-progress-orange" />
148
150
)
Original file line number Diff line number Diff line change @@ -401,7 +401,7 @@ export const statusColor = {
401
401
hibernating : 'var(--N700)' ,
402
402
}
403
403
404
- export const PULSATING_STATUS_MAP = {
404
+ export const PULSATING_STATUS_MAP : { [ key in keyof typeof statusColor ] ?: boolean } = {
405
405
progressing : true ,
406
406
initiating : true ,
407
407
starting : true ,
You can’t perform that action at this time.
0 commit comments