Commit a1efbfbe authored by Kushal Pandya's avatar Kushal Pandya

Merge branch '37091-create-new-epic-option-fails-on-epics-at-the-sub-group-level' into 'master'

Encoded groupId so project path works

See merge request gitlab-org/gitlab!20646
parents 6cd11c32 65913f16
......@@ -49,7 +49,7 @@ export default {
createChildEpic({ groupId, parentEpicIid, title }) {
const url = Api.buildUrl(this.childEpicPath)
.replace(':id', groupId)
.replace(':id', encodeURIComponent(groupId))
.replace(':epic_iid', parentEpicIid);
return axios.post(url, {
......
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