correct status label
This commit is contained in:
parent
c300505b50
commit
d76d744e48
|
@ -394,7 +394,7 @@ class CCPExecutionHistory extends HTMLElement {
|
||||||
e.textContent = status
|
e.textContent = status
|
||||||
if (status === "running") e.classList.add("badge-primary");
|
if (status === "running") e.classList.add("badge-primary");
|
||||||
else if (status === "successful") e.classList.add("badge-success");
|
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");
|
else e.classList.add("badge-secondary");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue