diff options
Diffstat (limited to 'routers/web/org/org_labels.go')
-rw-r--r-- | routers/web/org/org_labels.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/routers/web/org/org_labels.go b/routers/web/org/org_labels.go index 1c910a93a5..e96627762b 100644 --- a/routers/web/org/org_labels.go +++ b/routers/web/org/org_labels.go @@ -45,6 +45,7 @@ func NewLabel(ctx *context.Context) { l := &issues_model.Label{ OrgID: ctx.Org.Organization.ID, Name: form.Title, + Exclusive: form.Exclusive, Description: form.Description, Color: form.Color, } @@ -70,6 +71,7 @@ func UpdateLabel(ctx *context.Context) { } l.Name = form.Title + l.Exclusive = form.Exclusive l.Description = form.Description l.Color = form.Color if err := issues_model.UpdateLabel(l); err != nil { |