Skip to content
Snippets Groups Projects
Commit 527857f6 authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Hide progress spinner if a job failed.

parent 820845b4
No related branches found
No related tags found
No related merge requests found
...@@ -280,7 +280,7 @@ var options = {page: 5, ...@@ -280,7 +280,7 @@ var options = {page: 5,
setStatus(status) { setStatus(status) {
let progressIndicator, statusElements; let progressIndicator, statusElements;
if (status === "complete") { if (status === "complete" || status === "failed") {
progressIndicator = document.getElementById("progress-indicator"); progressIndicator = document.getElementById("progress-indicator");
progressIndicator.classList.add("hide"); progressIndicator.classList.add("hide");
} }
......
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