Skip to content
Snippets Groups Projects

CE-2812: Replace fetching data banner with linear progress

Merged CE-2812: Replace fetching data banner with linear progress
2 unresolved threads
Merged Johanna Szepanski requested to merge CE-2812-change-loader-fecth-status into develop
2 unresolved threads
Files
2
+ 6
6
@@ -31,12 +31,12 @@ export class AWXJobDetails {
return this.job?.status.toLowerCase();
}
message() {
const stem = this.job ? `${this.typeLabel()} ` : "";
const info = this.job
? jobMessages[this.job.status.toLowerCase()]
: "Fetching data";
const message = stem + info;
return message;
if (this.job) {
const stem = this.typeLabel();
const info = jobMessages[this.job.status.toLowerCase()];
return `${stem} ${info}`;
}
return null;
}
severity() {
const status = this.job?.status.toLowerCase();
Loading