correct status label

This commit is contained in:
dcore94 2023-02-06 13:26:01 +01:00
parent c300505b50
commit d76d744e48
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ class CCPExecutionHistory extends HTMLElement {
e.textContent = status
if (status === "running") e.classList.add("badge-primary");
else if (status === "successful") e.classList.add("badge-success");
else if (status === "failure") e.classList.add("badge-danger");
else if (status === "failed") e.classList.add("badge-danger");
else e.classList.add("badge-secondary");
}
}