diff options
author | Tim Zallmann <tzallmann@gitlab.com> | 2017-12-05 09:07:15 +0100 |
---|---|---|
committer | Tim Zallmann <tzallmann@gitlab.com> | 2017-12-19 12:26:02 +0100 |
commit | eceb81593228b48e695ec5dad0ac97788fc6d8de (patch) | |
tree | 4564cff50bd6b33a8fa8c257eff8009c637ff667 | |
parent | 9e98131dbc0b1a3fa259f31e4c4bf44c0fa68418 (diff) | |
download | gitlab-ce-eceb81593228b48e695ec5dad0ac97788fc6d8de.tar.gz |
Fix for Commiting Data
-rw-r--r-- | app/assets/javascripts/ide/components/repo_commit_section.vue | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/assets/javascripts/ide/components/repo_commit_section.vue b/app/assets/javascripts/ide/components/repo_commit_section.vue index c4496942608..e19df063910 100644 --- a/app/assets/javascripts/ide/components/repo_commit_section.vue +++ b/app/assets/javascripts/ide/components/repo_commit_section.vue @@ -30,7 +30,7 @@ export default { }, computed: { ...mapState([ - 'currentBranch', + 'currentBranchId', ]), ...mapGetters([ 'changedFiles', @@ -74,7 +74,6 @@ export default { branch: this.currentBranchId, endpoint: `/${this.currentProjectId}/tree/${to.params.branch}`, }); - }) .catch(() => { this.submitCommitsLoading = false; |