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

index.js « status « bitbucket_server « import « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 680ff0ddcdee0c97c2af45a7df1d3b374bdbdfe5 (plain)
1
2
3
4
5
6
7
8
9
10
import mountImportProjectsTable from '~/import_entities/import_projects';

import BitbucketServerStatusTable from './components/bitbucket_server_status_table.vue';

const mountElement = document.getElementById('import-projects-mount-element');
mountImportProjectsTable({
  mountElement,
  Component: BitbucketServerStatusTable,
  extraProps: ({ reconfigurePath }) => ({ reconfigurePath }),
});