summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/operation_settings/index.js
blob: 6946578e6d2e879e9b9c4c64dd415f81508b59aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import Vue from 'vue';
import store from './store';
import ExternalDashboardForm from './components/external_dashboard.vue';

export default () => {
  /**
   * This check can be removed when we remove
   * the :grafana_dashboard_link feature flag
   */
  if (!gon.features.grafanaDashboardLink) {
    return null;
  }

  const el = document.querySelector('.js-operation-settings');

  return new Vue({
    el,
    store: store(el.dataset),
    render(createElement) {
      return createElement(ExternalDashboardForm);
    },
  });
};