summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/clusters/components/application_row.vue
diff options
context:
space:
mode:
authorEric Eastwood <contact@ericeastwood.com>2017-11-07 06:27:33 -0600
committerEric Eastwood <contact@ericeastwood.com>2017-11-07 06:27:33 -0600
commit0c27de5f45aa1dc9841d10d348292324546685f2 (patch)
tree8aadf3532d0869d85d1528ad2a85b96765311899 /app/assets/javascripts/clusters/components/application_row.vue
parent68a9229502de26c191dbd56738828736876217f6 (diff)
downloadgitlab-ce-0c27de5f45aa1dc9841d10d348292324546685f2.tar.gz
Update Cluster application install to be enabled when errored
Diffstat (limited to 'app/assets/javascripts/clusters/components/application_row.vue')
-rw-r--r--app/assets/javascripts/clusters/components/application_row.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/clusters/components/application_row.vue b/app/assets/javascripts/clusters/components/application_row.vue
index b672111fda8..872abf03ef1 100644
--- a/app/assets/javascripts/clusters/components/application_row.vue
+++ b/app/assets/javascripts/clusters/components/application_row.vue
@@ -66,7 +66,7 @@ export default {
// Avoid the potential for the real-time data to say APPLICATION_INSTALLABLE but
// we already made a request to install and are just waiting for the real-time
// to sync up.
- return this.status !== APPLICATION_INSTALLABLE ||
+ return (this.status !== APPLICATION_INSTALLABLE && this.status !== APPLICATION_ERROR) ||
this.requestStatus === REQUEST_LOADING ||
this.requestStatus === REQUEST_SUCCESS;
},