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/artifacts/index.js')
-rw-r--r--app/assets/javascripts/artifacts/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/artifacts/index.js b/app/assets/javascripts/artifacts/index.js
index e0b2ab2bf47..a62b3daa961 100644
--- a/app/assets/javascripts/artifacts/index.js
+++ b/app/assets/javascripts/artifacts/index.js
@@ -2,7 +2,7 @@ import Vue from 'vue';
import VueApollo from 'vue-apollo';
import createDefaultClient from '~/lib/graphql';
import { parseBoolean } from '~/lib/utils/common_utils';
-import JobArtifactsTable from './components/job_artifacts_table.vue';
+import App from './components/app.vue';
Vue.use(VueApollo);
@@ -27,6 +27,6 @@ export const initArtifactsTable = () => {
canDestroyArtifacts: parseBoolean(canDestroyArtifacts),
artifactsManagementFeedbackImagePath,
},
- render: (createElement) => createElement(JobArtifactsTable),
+ render: (createElement) => createElement(App),
});
};