Commit f433a6d2 authored by Phil Hughes's avatar Phil Hughes

Merge branch 'winh-boards-models-list-ee' into 'master'

Copy issue boards list model from CE

Closes #12365

See merge request gitlab-org/gitlab-ee!14362
parents 6d33ff40 572d9436
......@@ -52,7 +52,7 @@ class List {
} else if (obj.user) {
this.assignee = new ListAssignee(obj.user);
this.title = this.assignee.name;
} else if (obj.milestone) {
} else if (isEE && obj.milestone) {
this.milestone = new ListMilestone(obj.milestone);
this.title = this.milestone.title;
}
......
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