Skip to content

Commit

Permalink
Merge pull request #10 from datum-cloud/fix-table-output
Browse files Browse the repository at this point in the history
bugfix: fix table output
  • Loading branch information
scotwells authored Jan 14, 2025
2 parents 2a367b9 + 4e575cc commit a31485b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/output/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func printTable(w io.Writer, headers ColumnFormatter, rowData [][]any) error {
t := table.New(headers...)
t.WithWriter(w)
for _, row := range rowData {
t.AddRow(row)
t.AddRow(row...)
}
t.Print()
return nil
Expand Down

0 comments on commit a31485b

Please sign in to comment.