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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-03-09 21:09:41 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-09 21:09:41 +0300
commit72c331ebf56ba3d49a79ec799de84e790748adef (patch)
treead23d8de3ff38f8d4fc95dca17d7aa4c8dce2923 /app/assets/javascripts/pages/projects/forks/new/index.js
parent6f2b1c32f3ccf422575f591b42372534502dcd72 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/pages/projects/forks/new/index.js')
-rw-r--r--app/assets/javascripts/pages/projects/forks/new/index.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/app/assets/javascripts/pages/projects/forks/new/index.js b/app/assets/javascripts/pages/projects/forks/new/index.js
index 420639eefb7..372967c8a1e 100644
--- a/app/assets/javascripts/pages/projects/forks/new/index.js
+++ b/app/assets/javascripts/pages/projects/forks/new/index.js
@@ -1,11 +1,12 @@
import Vue from 'vue';
-import ForkForm from './components/fork_form.vue';
+import App from './components/app.vue';
import ForkGroupsList from './components/fork_groups_list.vue';
const mountElement = document.getElementById('fork-groups-mount-element');
if (gon.features.forkProjectForm) {
const {
+ forkIllustration,
endpoint,
newGroupPath,
projectFullPath,
@@ -20,9 +21,14 @@ if (gon.features.forkProjectForm) {
// eslint-disable-next-line no-new
new Vue({
el: mountElement,
+ provide: {
+ newGroupPath,
+ visibilityHelpPath,
+ },
render(h) {
- return h(ForkForm, {
+ return h(App, {
props: {
+ forkIllustration,
endpoint,
newGroupPath,
projectFullPath,