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

[skip ci] add [0] for unassign

parent fffffca2
...@@ -79,7 +79,7 @@ class ListIssue { ...@@ -79,7 +79,7 @@ class ListIssue {
issue: { issue: {
milestone_id: this.milestone ? this.milestone.id : null, milestone_id: this.milestone ? this.milestone.id : null,
due_date: this.dueDate, 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) 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