From 10e43b51364de4cad6d6d79bed3dd9d493bc86f2 Mon Sep 17 00:00:00 2001 From: Charlie Andrews Date: Wed, 16 Mar 2022 08:43:34 -0400 Subject: [PATCH] Use color variable instead of literal for disabled reason --- pkg/cmd/codespace/list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/codespace/list.go b/pkg/cmd/codespace/list.go index 43eeb74e4..41f44d299 100644 --- a/pkg/cmd/codespace/list.go +++ b/pkg/cmd/codespace/list.go @@ -101,7 +101,7 @@ func (a *App) List(ctx context.Context, limit int, exporter cmdutil.Exporter) er tp.AddField(c.Repository.FullName, nil, nil) tp.AddField(c.branchWithGitStatus(), nil, cs.Cyan) if c.PendingOperation { - tp.AddField(c.PendingOperationDisabledReason, nil, cs.Gray) + tp.AddField(c.PendingOperationDisabledReason, nil, nameColor) } else { tp.AddField(c.State, nil, stateColor) }