Commit 1e420c94 authored by Filipa Lacerda's avatar Filipa Lacerda

Fix broken test for application row

parent 3d528e23
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
status: { status: {
type: String, type: String,
required: false, required: false,
default: '', default: null,
}, },
statusReason: { statusReason: {
type: String, type: String,
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
return `js-cluster-application-row-${this.id}`; return `js-cluster-application-row-${this.id}`;
}, },
installButtonLoading() { installButtonLoading() {
return this.status !== '' || return this.status ||
this.status === APPLICATION_SCHEDULED || this.status === APPLICATION_SCHEDULED ||
this.status === APPLICATION_INSTALLING || this.status === APPLICATION_INSTALLING ||
this.requestStatus === REQUEST_LOADING; this.requestStatus === REQUEST_LOADING;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment