We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e093d23 commit 9e03d01Copy full SHA for 9e03d01
api/queries_issue.go
@@ -78,7 +78,7 @@ const fragments = `
78
url
79
state
80
updatedAt
81
- labels(first: 3) {
+ labels(first: 100) {
82
nodes {
83
name
84
}
pkg/cmd/issue/shared/display.go
@@ -57,9 +57,5 @@ func IssueLabelList(issue api.Issue) string {
57
labelNames = append(labelNames, label.Name)
58
59
60
- list := strings.Join(labelNames, ", ")
61
- if issue.Labels.TotalCount > len(issue.Labels.Nodes) {
62
- list += ", …"
63
- }
64
- return list
+ return strings.Join(labelNames, ", ")
65
0 commit comments