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
f562599a
Commit
f562599a
authored
Nov 16, 2020
by
Florie Guibert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Swimlanes - Fix id format of newly created issue
parent
111239ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
app/assets/javascripts/boards/stores/actions.js
app/assets/javascripts/boards/stores/actions.js
+4
-1
No files found.
app/assets/javascripts/boards/stores/actions.js
View file @
f562599a
...
...
@@ -365,7 +365,10 @@ export default {
dispatch
(
'
createNewIssue
'
,
issueInput
)
.
then
(
res
=>
{
commit
(
types
.
ADD_ISSUE_TO_LIST
,
{
list
,
issue
:
formatIssue
(
res
)
});
commit
(
types
.
ADD_ISSUE_TO_LIST
,
{
list
,
issue
:
formatIssue
({
...
res
,
id
:
getIdFromGraphQLId
(
res
.
id
)
}),
});
commit
(
types
.
REMOVE_ISSUE_FROM_LIST
,
{
list
,
issue
});
})
.
catch
(()
=>
commit
(
types
.
ADD_ISSUE_TO_LIST_FAILURE
,
{
list
,
issueId
:
issueInput
.
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