diff --git a/ccp/js/executionhistorycontroller.js b/ccp/js/executionhistorycontroller.js index 32ec473..d2aa71a 100644 --- a/ccp/js/executionhistorycontroller.js +++ b/ccp/js/executionhistorycontroller.js @@ -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"); } }