diff --git a/papi/main.py b/papi/main.py index 05f9bf8..6ccdf87 100644 --- a/papi/main.py +++ b/papi/main.py @@ -108,7 +108,7 @@ def list_notification_as_text(request: Request, idsonde: str): status = content["status"] def coloriser(message): - d = {"error": "red", "warning": "orange", "pending": "blue"} + d = {"error": "red", "warning": "orange", "pending": "yellow", "ok": "green"} for k, v in d.items(): if message.endswith(k): return "color: %s;" % v