Small improvements, add migration to fix invalid alert states

This commit is contained in:
Jan Zípek 2024-03-31 20:55:35 +02:00
parent badde4a20e
commit 39f79a8f51
Signed by: kamen
GPG Key ID: A17882625B33AC31
2 changed files with 7 additions and 0 deletions

View File

@ -8,6 +8,11 @@
h2 { h2 {
flex: 1; flex: 1;
font-weight: normal;
} }
} }
.contact-points {
margin-bottom: 2rem;
}
} }

View File

@ -0,0 +1,2 @@
UPDATE alerts SET last_status = 'ok' WHERE last_status = 'good';
UPDATE alerts SET last_status = 'alert_pending' WHERE last_status = 'pending';