Commit 88eff9da authored by Clement Ho's avatar Clement Ho

[skip ci] add [0] for unassign

parent fffffca2
......@@ -79,7 +79,7 @@ class ListIssue {
issue: {
milestone_id: this.milestone ? this.milestone.id : null,
due_date: this.dueDate,
assignee_ids: this.selectedAssigneeIds,
assignee_ids: this.selectedAssigneeIds.length > 0 ? this.selectedAssigneeIds : [0],
label_ids: this.labels.map((label) => label.id)
}
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment