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/operation_settings/index.js')
-rw-r--r--app/assets/javascripts/operation_settings/index.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/assets/javascripts/operation_settings/index.js b/app/assets/javascripts/operation_settings/index.js
deleted file mode 100644
index e56583963ad..00000000000
--- a/app/assets/javascripts/operation_settings/index.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import Vue from 'vue';
-import MetricsSettingsForm from './components/metrics_settings.vue';
-import store from './store';
-
-export default () => {
- const el = document.querySelector('.js-operation-settings');
-
- if (!el) return false;
-
- return new Vue({
- el,
- store: store(el.dataset),
- render(createElement) {
- return createElement(MetricsSettingsForm);
- },
- });
-};