summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2018-01-09 11:10:08 +0000
committerFilipa Lacerda <filipa@gitlab.com>2018-01-09 11:10:08 +0000
commit1e420c94421c569ae7d428ae2fe6e26671036180 (patch)
tree48e5f51393640af86293d9bd86c5c8c155ee6c2f /app/assets
parent3d528e2334faa83cfaf3421e7431c7d2fbb22a4f (diff)
downloadgitlab-ce-1e420c94421c569ae7d428ae2fe6e26671036180.tar.gz
Fix broken test for application row
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/javascripts/clusters/components/application_row.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/clusters/components/application_row.vue b/app/assets/javascripts/clusters/components/application_row.vue
index 490fe27a7d4..fb41b7c6ab4 100644
--- a/app/assets/javascripts/clusters/components/application_row.vue
+++ b/app/assets/javascripts/clusters/components/application_row.vue
@@ -39,7 +39,7 @@
status: {
type: String,
required: false,
- default: '',
+ default: null,
},
statusReason: {
type: String,
@@ -62,7 +62,7 @@
return `js-cluster-application-row-${this.id}`;
},
installButtonLoading() {
- return this.status !== '' ||
+ return this.status ||
this.status === APPLICATION_SCHEDULED ||
this.status === APPLICATION_INSTALLING ||
this.requestStatus === REQUEST_LOADING;