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

Fix broken test for application row

parent 3d528e23
......@@ -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;
......
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