2019-07-31 22:56:46 +05:30
|
|
|
import ClustersBundle from '~/clusters/clusters_bundle';
|
2020-10-24 23:57:45 +05:30
|
|
|
import initIntegrationForm from '~/clusters/forms/show';
|
2021-03-11 19:13:27 +05:30
|
|
|
import initClusterHealth from '~/pages/projects/clusters/show/cluster_health';
|
2019-07-31 22:56:46 +05:30
|
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
new ClustersBundle(); // eslint-disable-line no-new
|
2020-07-28 23:09:34 +05:30
|
|
|
initClusterHealth();
|
2020-10-24 23:57:45 +05:30
|
|
|
initIntegrationForm();
|
2019-07-31 22:56:46 +05:30
|
|
|
});
|