Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/clusters_list/store/state.js')
-rw-r--r--app/assets/javascripts/clusters_list/store/state.js16
1 files changed, 1 insertions, 15 deletions
diff --git a/app/assets/javascripts/clusters_list/store/state.js b/app/assets/javascripts/clusters_list/store/state.js
index e6cdf9d67db..ed032ed8435 100644
--- a/app/assets/javascripts/clusters_list/store/state.js
+++ b/app/assets/javascripts/clusters_list/store/state.js
@@ -1,19 +1,5 @@
export default (initialState = {}) => ({
endpoint: initialState.endpoint,
loading: false, // TODO - set this to true once integrated with BE
- clusters: [
- // TODO - remove mock data once integrated with BE
- // {
- // name: 'My Cluster',
- // environmentScope: '*',
- // size: '3',
- // clusterType: 'group_type',
- // },
- // {
- // name: 'My other cluster',
- // environmentScope: 'production',
- // size: '12',
- // clusterType: 'project_type',
- // },
- ],
+ clusters: [],
});