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:
Diffstat (limited to 'app/assets/javascripts/repository/index.js')
-rw-r--r--app/assets/javascripts/repository/index.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/assets/javascripts/repository/index.js b/app/assets/javascripts/repository/index.js
index e5d22f50d72..494e270a66c 100644
--- a/app/assets/javascripts/repository/index.js
+++ b/app/assets/javascripts/repository/index.js
@@ -69,7 +69,7 @@ export default function setupVueRepositoryList() {
if (!forkEl) {
return null;
}
- const { sourceName, sourcePath } = forkEl.dataset;
+ const { sourceName, sourcePath, aheadComparePath, behindComparePath } = forkEl.dataset;
return new Vue({
el: forkEl,
apolloProvider,
@@ -77,9 +77,11 @@ export default function setupVueRepositoryList() {
return h(ForkInfo, {
props: {
projectPath,
- selectedRef: ref,
+ selectedBranch: ref,
sourceName,
sourcePath,
+ aheadComparePath,
+ behindComparePath,
},
});
},
@@ -131,7 +133,7 @@ export default function setupVueRepositoryList() {
},
on: {
input(selectedRef) {
- visitUrl(generateRefDestinationPath(projectRootPath, selectedRef));
+ visitUrl(generateRefDestinationPath(projectRootPath, ref, selectedRef));
},
},
});