Commit 65913f16 authored by Donald Cook's avatar Donald Cook

Encoded groupId so project path works

parent 71e2ba4d
......@@ -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