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:
authorFabio Busatto <fabio@gitlab.com>2018-02-06 17:59:15 +0300
committerTim Zallmann <tzallmann@gitlab.com>2018-02-06 17:59:15 +0300
commit914415c79f4100494b96d5f883f235fd61d62f52 (patch)
treed6f3cac3054d88117bda0cdb7b22355f9d275c78 /app/assets/javascripts/clusters/stores
parentab41e9ad6e7e78c1b6dcef59fbde5f31c67c1d43 (diff)
Resolve "Add a link to documentation on how to get external ip in the Kubernetes cluster details page"
Diffstat (limited to 'app/assets/javascripts/clusters/stores')
-rw-r--r--app/assets/javascripts/clusters/stores/clusters_store.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/assets/javascripts/clusters/stores/clusters_store.js b/app/assets/javascripts/clusters/stores/clusters_store.js
index bd4a1fb37f9..49c3d184ef9 100644
--- a/app/assets/javascripts/clusters/stores/clusters_store.js
+++ b/app/assets/javascripts/clusters/stores/clusters_store.js
@@ -4,6 +4,7 @@ export default class ClusterStore {
constructor() {
this.state = {
helpPath: null,
+ ingressHelpPath: null,
status: null,
statusReason: null,
applications: {
@@ -39,8 +40,9 @@ export default class ClusterStore {
};
}
- setHelpPath(helpPath) {
+ setHelpPaths(helpPath, ingressHelpPath) {
this.state.helpPath = helpPath;
+ this.state.ingressHelpPath = ingressHelpPath;
}
updateStatus(status) {