Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
73fb0354
Commit
73fb0354
authored
Oct 03, 2017
by
Simon Knox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include required label_ids param
parent
1c4c0342
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
app/assets/javascripts/boards/services/board_service.js
app/assets/javascripts/boards/services/board_service.js
+3
-4
No files found.
app/assets/javascripts/boards/services/board_service.js
View file @
73fb0354
...
@@ -31,14 +31,13 @@ class BoardService {
...
@@ -31,14 +31,13 @@ class BoardService {
createBoard
(
board
)
{
createBoard
(
board
)
{
board
.
board
=
board
.
board
||
{};
board
.
board
=
board
.
board
||
{};
board
.
board
.
label_ids
=
(
board
.
labels
||
[]).
map
(
b
=>
b
.
id
);
if
(
board
.
labels
&&
board
.
labels
.
length
>
0
)
{
board
.
board
.
label_ids
=
board
.
labels
.
map
(
b
=>
b
.
id
);
board
.
board
.
milestone_id
=
board
.
milestone_id
;
}
if
(
board
.
assignee
)
{
if
(
board
.
assignee
)
{
board
.
board
.
assignee_id
=
board
.
assignee
.
id
;
board
.
board
.
assignee_id
=
board
.
assignee
.
id
;
}
}
board
.
board
.
milestone_id
=
board
.
milestone_id
;
board
.
board
.
weight
=
board
.
weight
;
board
.
board
.
weight
=
board
.
weight
;
if
(
board
.
id
)
{
if
(
board
.
id
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment