Skip to content

Commit

Permalink
Fix column formatting for sources print
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniils Petrovs committed Nov 2, 2023
1 parent c4712c9 commit 6b36beb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/utils/print.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ func PrintSprints(sprints *[]models.Sprint) {
func PrintSources(sources *[]models.Source) {
tab := tabular.New()

tab.Col("id", "ID", 6)
tab.Col("id", "ID", 10)
tab.Col("name", "Name", 30)

format := tab.Print("id", "name")
Expand Down

0 comments on commit 6b36beb

Please sign in to comment.