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 2937c6d commit 271e65bCopy full SHA for 271e65b
routers/web/org/org_labels.go
@@ -44,11 +44,12 @@ func NewLabel(ctx *context.Context) {
44
}
45
46
l := &issues_model.Label{
47
- OrgID: ctx.Org.Organization.ID,
48
- Name: form.Title,
49
- Exclusive: form.Exclusive,
50
- Description: form.Description,
51
- Color: form.Color,
+ OrgID: ctx.Org.Organization.ID,
+ Name: form.Title,
+ Exclusive: form.Exclusive,
+ Description: form.Description,
+ Color: form.Color,
52
+ ExclusiveOrder: form.ExclusiveOrder,
53
54
if err := issues_model.NewLabel(ctx, l); err != nil {
55
ctx.ServerError("NewLabel", err)
0 commit comments