Skip to content

Commit

Permalink
Add project category and project type to list projects output
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaian committed Nov 13, 2024
1 parent 21b0e53 commit 8c42cc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/jira/project_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func (pl *ProjectList) Print() {
})

for _, project := range pl.Projects {
fmt.Printf("\033[1;34m%s\033[0m: \033[33m%s\033[0m\n", project.Key, project.Name)
fmt.Printf("\033[1;34m%s\033[0m: \033[33m%s\033[0m (%s) [%s]\n", project.Key, project.Name, project.ProjectTypeKey, project.ProjectCategory.Name)
}

if pl.Total > pl.MaxResults {
Expand Down

0 comments on commit 8c42cc8

Please sign in to comment.