debian-mirror-gitlab/app/assets/javascripts/pages/admin/clusters/show/index.js
2020-10-24 23:57:45 +05:30

9 lines
354 B
JavaScript

import ClustersBundle from '~/clusters/clusters_bundle';
import initClusterHealth from '~/pages/projects/clusters/show/cluster_health';
import initIntegrationForm from '~/clusters/forms/show';
document.addEventListener('DOMContentLoaded', () => {
new ClustersBundle(); // eslint-disable-line no-new
initClusterHealth();
initIntegrationForm();
});