Skip to content

Commit

Permalink
Merge pull request #5 from github/models/319-tableprinter
Browse files Browse the repository at this point in the history
Upcase the column headers when listing models
  • Loading branch information
garman authored Oct 9, 2024
2 parents ab0f0c4 + 7b4aefe commit a61ff9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/list/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func NewListCommand() *cobra.Command {
width, _, _ := terminal.Size()
printer := tableprinter.New(out, isTTY, width)

printer.AddHeader([]string{"Display Name", "Model Name"}, tableprinter.WithColor(lightGrayUnderline))
printer.AddHeader([]string{"DISPLAY NAME", "MODEL NAME"}, tableprinter.WithColor(lightGrayUnderline))
printer.EndRow()

for _, model := range models {
Expand Down

0 comments on commit a61ff9a

Please sign in to comment.