summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/monitoring
diff options
context:
space:
mode:
authorSimon Knox <simon@gitlab.com>2018-01-23 16:00:15 +0000
committerPhil Hughes <me@iamphill.com>2018-01-23 16:00:15 +0000
commit0b47c94a7243e956221fe2447e5c338d8ff2280b (patch)
tree3a57c8ff564c31f024c55a85a743030f306f4ddc /app/assets/javascripts/monitoring
parentd3f42147a3c6d5f18ec7e7cb821f870efabf026a (diff)
downloadgitlab-ce-0b47c94a7243e956221fe2447e5c338d8ff2280b.tar.gz
remove webpack bundle tag for monitoring:environments:metrics
Diffstat (limited to 'app/assets/javascripts/monitoring')
-rw-r--r--app/assets/javascripts/monitoring/monitoring_bundle.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/monitoring/monitoring_bundle.js b/app/assets/javascripts/monitoring/monitoring_bundle.js
index 104432ef5de..c3b0ef7e9ca 100644
--- a/app/assets/javascripts/monitoring/monitoring_bundle.js
+++ b/app/assets/javascripts/monitoring/monitoring_bundle.js
@@ -1,7 +1,7 @@
import Vue from 'vue';
import Dashboard from './components/dashboard.vue';
-document.addEventListener('DOMContentLoaded', () => new Vue({
+export default () => new Vue({
el: '#prometheus-graphs',
render: createElement => createElement(Dashboard),
-}));
+});