diff --git a/backend/frontend/index.html b/backend/frontend/index.html index 369a319..5369818 100644 --- a/backend/frontend/index.html +++ b/backend/frontend/index.html @@ -70,7 +70,7 @@ - + Alerts @@ -90,7 +90,7 @@ Low - + @@ -109,6 +109,9 @@ + + No alerts match the current filters. Alerts appear here when rules trigger during event ingestion. + Prev @@ -415,7 +418,7 @@ const res = await fetch('/api/version'); if (res.ok) { const body = await res.json(); - this.appVersion = body.version || ''; + this.appVersion = (body.version || '').replace(/^v/, ''); } } catch {} }, diff --git a/backend/frontend/style.css b/backend/frontend/style.css index aa27eba..77e4b20 100644 --- a/backend/frontend/style.css +++ b/backend/frontend/style.css @@ -809,6 +809,15 @@ input { flex-wrap: wrap; } +.alerts-empty { + padding: 20px; + text-align: center; + color: var(--muted); + font-size: 14px; + border: 1px dashed var(--border); + border-radius: 10px; +} + @media (max-width: 640px) { .topbar { flex-direction: column;
No alerts match the current filters. Alerts appear here when rules trigger during event ingestion.