summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/admin/clusters/show/index.js
blob: 9d94973af0dc7f44f272b7d3be158ee7850bee4b (plain)
1
2
3
4
5
6
7
8
9
import ClustersBundle from '~/clusters/clusters_bundle';
import initIntegrationForm from '~/clusters/forms/show';
import initClusterHealth from '~/pages/projects/clusters/show/cluster_health';

document.addEventListener('DOMContentLoaded', () => {
  new ClustersBundle(); // eslint-disable-line no-new
  initClusterHealth();
  initIntegrationForm();
});