From 6a55245394460e2af82e62724e8a9583075fa91c Mon Sep 17 00:00:00 2001 From: dani <29378233+kheina@users.noreply.github.com> Date: Thu, 25 Jan 2024 12:27:36 -0500 Subject: [PATCH] fix(cli): StoragePolicyId indent on list scopes (#4279) --- internal/cmd/commands/scopescmd/funcs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/commands/scopescmd/funcs.go b/internal/cmd/commands/scopescmd/funcs.go index 2f65fc3a73..b33652e5cb 100644 --- a/internal/cmd/commands/scopescmd/funcs.go +++ b/internal/cmd/commands/scopescmd/funcs.go @@ -160,7 +160,7 @@ func (c *Command) printListTable(items []*scopes.Scope) string { } if item.StoragePolicyId != "" { output = append(output, - fmt.Sprintf(" StoragePolicyId: %s", item.StoragePolicyId), + fmt.Sprintf(" StoragePolicyId: %s", item.StoragePolicyId), ) } if len(item.AuthorizedActions) > 0 {