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

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