Commit 01b378f2 authored by Phil Hughes's avatar Phil Hughes

Merge branch '47823-fix-issue-boards-label-list-creation' into 'master'

Resolve "Board list creation is broken"

Closes #47823

See merge request gitlab-org/gitlab-ce!19746
parents 1175e23b b0031dc7
......@@ -55,7 +55,8 @@ class List {
entityType = 'assignee_id';
}
return gl.boardService.createList(this.label.id)
return gl.boardService
.createList(entity.id, entityType)
.then(res => res.data)
.then(data => {
this.id = data.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