Skip to content

Commit 1c7daa3

Browse files
Change Pending color from blue to yellow in list and describe command
Signed-off-by: PuneetPunamiya <[email protected]>
1 parent fb54786 commit 1c7daa3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/cli/cmd/list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var (
2727
var ConditionColor = map[string]color.Attribute{
2828
"Rejected": color.FgHiRed,
2929
"Approved": color.FgHiGreen,
30-
"Pending": color.FgHiBlue,
30+
"Pending": color.FgHiYellow,
3131
}
3232

3333
const listTemplate = `{{- $at := len .ApprovalTasks.Items }}{{ if eq $at 0 -}}

pkg/cli/formatter/field.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
var ConditionColor = map[string]color.Attribute{
99
"Rejected": color.FgHiRed,
1010
"Approved": color.FgHiGreen,
11-
"Pending": color.FgHiBlue,
11+
"Pending": color.FgHiYellow,
1212
}
1313

1414
func ColorStatus(status string) string {

0 commit comments

Comments
 (0)