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:
authorChris Baumbauer <cab@cabnetworks.net>2018-11-02 18:39:25 +0300
committerChris Baumbauer <cab@cabnetworks.net>2018-11-02 18:39:25 +0300
commitdc078c241765cfea5f49409407b82db7296c132d (patch)
treedeeabb4b302f896b60ffe8e27163a4dddf625c4b /app/assets/javascripts/clusters/stores
parent28a9bbceb7ab5ffe2305db02052d663b1e68ab8e (diff)
parenta80ee886e4b4a41ace5fb796bf920c4e395bf4dd (diff)
Merge branch 'master' into triggermesh-phase1-knative
Diffstat (limited to 'app/assets/javascripts/clusters/stores')
-rw-r--r--app/assets/javascripts/clusters/stores/clusters_store.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/app/assets/javascripts/clusters/stores/clusters_store.js b/app/assets/javascripts/clusters/stores/clusters_store.js
index f8e8bf3cc40..e9c580c5dfa 100644
--- a/app/assets/javascripts/clusters/stores/clusters_store.js
+++ b/app/assets/javascripts/clusters/stores/clusters_store.js
@@ -84,12 +84,8 @@ export default class ClusterStore {
this.state.status = serverState.status;
this.state.statusReason = serverState.status_reason;
- serverState.applications.forEach((serverAppEntry) => {
- const {
- name: appId,
- status,
- status_reason: statusReason,
- } = serverAppEntry;
+ serverState.applications.forEach(serverAppEntry => {
+ const { name: appId, status, status_reason: statusReason } = serverAppEntry;
this.state.applications[appId] = {
...(this.state.applications[appId] || {}),