summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Knox <psimyn@gmail.com>2018-01-12 22:06:18 +1100
committerSimon Knox <psimyn@gmail.com>2018-01-12 22:06:18 +1100
commit564cdddb5f4c8a690a937b61dba2e0427c3eb565 (patch)
tree914432f363dd643088d05e9bf3196ea5b4a90394
parent22f2097d8a360382fd0a120ac29f4b4cc29cf5c7 (diff)
downloadgitlab-ce-564cdddb5f4c8a690a937b61dba2e0427c3eb565.tar.gz
export instances
-rw-r--r--app/assets/javascripts/pages/projects/clusters/index/index.js2
-rw-r--r--app/assets/javascripts/pages/projects/clusters/show/index.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/pages/projects/clusters/index/index.js b/app/assets/javascripts/pages/projects/clusters/index/index.js
index 66c3111f2b8..b6ee8f7af48 100644
--- a/app/assets/javascripts/pages/projects/clusters/index/index.js
+++ b/app/assets/javascripts/pages/projects/clusters/index/index.js
@@ -1,3 +1,3 @@
import ClustersIndex from '~/clusters/clusters_index';
-export default ClustersIndex;
+export default new ClustersIndex();
diff --git a/app/assets/javascripts/pages/projects/clusters/show/index.js b/app/assets/javascripts/pages/projects/clusters/show/index.js
index f87471ee610..42a0d75573e 100644
--- a/app/assets/javascripts/pages/projects/clusters/show/index.js
+++ b/app/assets/javascripts/pages/projects/clusters/show/index.js
@@ -1,3 +1,3 @@
import ClustersBundle from '~/clusters/clusters_bundle';
-export default ClustersBundle;
+export default new ClustersBundle();