Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-06-07 19:19:35 +0300
committerPhil Hughes <me@iamphill.com>2018-06-15 13:18:48 +0300
commite906be2f683f6170a5ee1d5b5f104ab0e08062d1 (patch)
tree64f388c2f43fd7710456fbc1fdd688f64c8af64e /app/assets/javascripts/ide/stores/mutations
parentf39582f7b8cc9f1fdb74b58eece944110fc0a625 (diff)
IDE sends last commit ID when committing changes
Closes #46192
Diffstat (limited to 'app/assets/javascripts/ide/stores/mutations')
-rw-r--r--app/assets/javascripts/ide/stores/mutations/file.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/assets/javascripts/ide/stores/mutations/file.js b/app/assets/javascripts/ide/stores/mutations/file.js
index 5826f6cb828..ef70679f20e 100644
--- a/app/assets/javascripts/ide/stores/mutations/file.js
+++ b/app/assets/javascripts/ide/stores/mutations/file.js
@@ -47,6 +47,7 @@ export default {
baseRaw: null,
html: data.html,
size: data.size,
+ lastCommit: data.last_commit,
});
},
[types.SET_FILE_RAW_DATA](state, { file, raw }) {