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-03 20:48:48 +0300
committerChris Baumbauer <cab@cabnetworks.net>2018-11-03 20:48:48 +0300
commitc10452d285134b7eac63551f5a09606fb5d4f5e0 (patch)
treead88609384b75b54cef8df28c794333189b9ab8b /app/assets/javascripts/clusters/stores
parentaa44393e8f6e428bb7159ac8815a143a9e3e1047 (diff)
Resolve issues raised by Kamil
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 e9c580c5dfa..26566b60ba6 100644
--- a/app/assets/javascripts/clusters/stores/clusters_store.js
+++ b/app/assets/javascripts/clusters/stores/clusters_store.js
@@ -52,7 +52,7 @@ export default class ClusterStore {
statusReason: null,
requestStatus: null,
requestReason: null,
- hostname: ''
+ hostname: null
},
},
};
@@ -102,7 +102,7 @@ export default class ClusterStore {
? `jupyter.${this.state.applications.ingress.externalIp}.nip.io`
: '');
} else if (appId === KNATIVE) {
- this.state.applications.knative.hostname = serverAppEntry.hostname ? serverAppEntry.hostname : '';
+ this.state.applications.knative.hostname = serverAppEntry.hostname ? serverAppEntry.hostname : null;
}
});
}