Skip to content

Commit fb39718

Browse files
authored
fix(core): render kas-registry key list-mappings table rows (#663)
<img width="1089" height="153" alt="Screenshot 2025-10-03 at 2 12 59 PM" src="https://github.com/user-attachments/assets/74486fcf-ad43-4e22-b80a-1fc751e7d9df" /> Table formatting for overflow values needs more attention throughout CLI outputs and is out of scope for this fix.
1 parent 651580b commit fb39718

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cmd/kas-keys.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -560,8 +560,7 @@ func policyListKeyMappings(cmd *cobra.Command, args []string) {
560560
table.NewFlexColumn("namespace_mappings", "Namespaces", cli.FlexColumnWidthThree),
561561
table.NewFlexColumn("attribute_mappings", "Attributes", cli.FlexColumnWidthThree),
562562
table.NewFlexColumn("value_mappings", "Values", cli.FlexColumnWidthThree),
563-
)
564-
t.WithRows(rows)
563+
).WithRows(rows)
565564
t = cli.WithListPaginationFooter(t, resp.GetPagination())
566565

567566
HandleSuccess(cmd, "", t, resp)

0 commit comments

Comments
 (0)