27 lines
567 B
JavaScript
27 lines
567 B
JavaScript
|
import Vue from 'vue';
|
||
|
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,
|
||
|
render(createElement) {
|
||
|
return createElement(ExternalDashboardForm, {
|
||
|
props: {
|
||
|
...el.dataset,
|
||
|
expanded: false,
|
||
|
},
|
||
|
});
|
||
|
},
|
||
|
});
|
||
|
};
|