Avoid setting missing label/milestone/assignee ids
Label, milestone, assignee ids are not includes in post request, possible js or form building bug.
This commit is contained in:
parent
93b9a2acc0
commit
d87a9cb362
1 changed files with 3 additions and 3 deletions
|
@ -463,9 +463,9 @@ func UpdateIssue(ctx *middleware.Context, form auth.CreateIssueForm) {
|
|||
}
|
||||
|
||||
issue.Name = form.IssueName
|
||||
issue.MilestoneId = form.MilestoneId
|
||||
issue.AssigneeId = form.AssigneeId
|
||||
issue.LabelIds = form.Labels
|
||||
//issue.MilestoneId = form.MilestoneId
|
||||
//issue.AssigneeId = form.AssigneeId
|
||||
//issue.LabelIds = form.Labels
|
||||
issue.Content = form.Content
|
||||
// try get content from text, ignore conflict with preview ajax
|
||||
if form.Content == "" {
|
||||
|
|
Reference in a new issue