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/ci/artifacts/index.js')
-rw-r--r--app/assets/javascripts/ci/artifacts/index.js8
1 files changed, 1 insertions, 7 deletions
diff --git a/app/assets/javascripts/ci/artifacts/index.js b/app/assets/javascripts/ci/artifacts/index.js
index 6e795fd9bd7..c6021eb056f 100644
--- a/app/assets/javascripts/ci/artifacts/index.js
+++ b/app/assets/javascripts/ci/artifacts/index.js
@@ -19,12 +19,7 @@ export const initArtifactsTable = () => {
return false;
}
- const {
- projectPath,
- projectId,
- canDestroyArtifacts,
- artifactsManagementFeedbackImagePath,
- } = el.dataset;
+ const { projectPath, projectId, canDestroyArtifacts } = el.dataset;
return new Vue({
el,
@@ -33,7 +28,6 @@ export const initArtifactsTable = () => {
projectPath,
projectId,
canDestroyArtifacts: parseBoolean(canDestroyArtifacts),
- artifactsManagementFeedbackImagePath,
},
render: (createElement) => createElement(App),
});