diff --git a/web/src/components/atomic/Icon.vue b/web/src/components/atomic/Icon.vue index d1b9ba300..129d911d0 100644 --- a/web/src/components/atomic/Icon.vue +++ b/web/src/components/atomic/Icon.vue @@ -12,14 +12,17 @@ - - - + + - - + + diff --git a/web/src/components/repo/pipeline/PipelineStatusIcon.vue b/web/src/components/repo/pipeline/PipelineStatusIcon.vue index 58d214b28..f80ef78d9 100644 --- a/web/src/components/repo/pipeline/PipelineStatusIcon.vue +++ b/web/src/components/repo/pipeline/PipelineStatusIcon.vue @@ -10,6 +10,7 @@ 'text-wp-state-neutral-100': pipelineStatusColors[status] === 'gray', 'text-wp-state-ok-100': pipelineStatusColors[status] === 'green', 'text-wp-state-info-100': pipelineStatusColors[status] === 'blue', + 'text-wp-state-warn-100': pipelineStatusColors[status] === 'orange', }" /> diff --git a/web/src/components/repo/pipeline/pipeline-status.ts b/web/src/components/repo/pipeline/pipeline-status.ts index 177350ef5..5b444e115 100644 --- a/web/src/components/repo/pipeline/pipeline-status.ts +++ b/web/src/components/repo/pipeline/pipeline-status.ts @@ -1,12 +1,12 @@ import { PipelineStatus } from '~/lib/api/types'; -export const pipelineStatusColors: Record = { +export const pipelineStatusColors: Record = { blocked: 'gray', declined: 'red', error: 'red', failure: 'red', killed: 'gray', - pending: 'gray', + pending: 'orange', skipped: 'gray', running: 'blue', started: 'blue',