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-07 08:33:16 +0300
committerChris Baumbauer <cab@cabnetworks.net>2018-11-07 08:33:16 +0300
commitc2097ed74cc832972142d24f3cda1faf7a96d550 (patch)
tree406157adf00ea07c90ee322b86d1bda4b08c3d7b /app/assets/javascripts/clusters/stores
parent26673cc82775255d3e7b3d489e930bc43f19e01b (diff)
Fix style with clusters_store.js and remove workaround for namespace role issue
Diffstat (limited to 'app/assets/javascripts/clusters/stores')
-rw-r--r--app/assets/javascripts/clusters/stores/clusters_store.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/clusters/stores/clusters_store.js b/app/assets/javascripts/clusters/stores/clusters_store.js
index 5ec276f7788..e45da967392 100644
--- a/app/assets/javascripts/clusters/stores/clusters_store.js
+++ b/app/assets/javascripts/clusters/stores/clusters_store.js
@@ -102,8 +102,8 @@ export default class ClusterStore {
? `jupyter.${this.state.applications.ingress.externalIp}.nip.io`
: '');
} else if (appId === KNATIVE) {
- this.state.applications.knative.hostname = serverAppEntry.hostname ||
- this.state.applications.knative.hostname;
+ this.state.applications.knative.hostname =
+ serverAppEntry.hostname || this.state.applications.knative.hostname;
}
});
}