Skip to content

Commit

Permalink
Update column name for the rule type list table (#2102)
Browse files Browse the repository at this point in the history
Update table column name
  • Loading branch information
rdimitrov authored Jan 10, 2024
1 parent f6ed42c commit cf82264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/util/cli/table/simple/simple.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func repoListLayout(table *tablewriter.Table) {

func ruleTypeListLayout(table *tablewriter.Table) {
defaultLayout(table)
table.SetHeader([]string{"Provider", "Project Name", "ID", "Name", "Description"})
table.SetHeader([]string{"Provider", "Project", "ID", "Name", "Description"})
table.SetAutoMergeCellsByColumnIndex([]int{0, 1, 2, 3})
// This is needed for the rule definition and rule parameters
table.SetAutoWrapText(false)
Expand Down

0 comments on commit cf82264

Please sign in to comment.