feat: add task state status badge

This commit is contained in:
Matthieu Bessat 2024-07-28 12:08:54 +02:00
parent bdd50303ba
commit 71c2b9dc63
3 changed files with 27 additions and 3 deletions

View file

@ -12,3 +12,15 @@ table tbody tr td:first-child {
.logs-lines {
white-space: nowrap;
}
.task-status_running {
background-color: blue;
}
.task-status_success {
background-color: green;
}
.task-status_failed {
background-color: red;
}