Skip to content

Commit

Permalink
Fix JSONPath mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronCrawfis committed Sep 11, 2023
1 parent c0cd383 commit 20c9922
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/cli/objectformats/objectformats.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ func GetResourceGroupTableFormat() output.FormatterOptions {
Columns: []output.Column{
{
Heading: "ID",
JSONPath: "{ .id }",
JSONPath: "{ .ID }",
},
{
Heading: "Name",
JSONPath: "{ .name }",
JSONPath: "{ .Name }",
},
},
}
Expand Down

0 comments on commit 20c9922

Please sign in to comment.