We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8f061e commit 253efbcCopy full SHA for 253efbc
routers/api/v1/repo/issue_label.go
@@ -51,6 +51,11 @@ func ListIssueLabels(ctx *context.APIContext) {
51
return
52
}
53
54
+ if err := issue.LoadAttributes(); err != nil {
55
+ ctx.Error(500, "LoadAttributes", err)
56
+ return
57
+ }
58
+
59
apiLabels := make([]*api.Label, len(issue.Labels))
60
for i := range issue.Labels {
61
apiLabels[i] = issue.Labels[i].APIFormat()
0 commit comments