Commit 38ee9c7b authored by Tim Zallmann's avatar Tim Zallmann

Merge branch 'fix-multiple-requests-bug' into 'master'

Alter if condition when create API is called

See merge request gitlab-org/gitlab!24513
parents 6bc457c1 cceb950f
......@@ -106,7 +106,7 @@ export default {
saveChangesSelfMonitorProject() {
if (this.projectCreated && !this.projectEnabled) {
this.showSelfMonitorModal();
} else {
} else if (!this.projectCreated && !this.loading) {
this.createProject();
}
},
......
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