Skip to content
Snippets Groups Projects
Commit 0fd05b8a authored by Imre Toth's avatar Imre Toth
Browse files

Resolve CE-1905 "Adjust deployment details when queued"

parent 4f7db12a
No related branches found
No related tags found
2 merge requests!407CE-2141: 3.0.0,!344Resolve CE-1905 "Adjust deployment details when queued"
......@@ -31,10 +31,10 @@ export class AWXJobDetails {
return this.job?.status.toLowerCase();
}
message() {
const stem = `The ${this.typeLabel()} `;
const stem = this.job ? `The ${this.typeLabel()}: ` : "";
const info = this.job
? jobMessages[this.job.status.toLowerCase()]
: ": fetching data";
: "Fetching data";
const message = stem + info;
return message;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment