feat: styling with tailwind

This commit is contained in:
2026-02-15 16:48:31 +02:00
parent 9920bfcdee
commit 2717dde5af
6 changed files with 3530 additions and 106 deletions

View File

@@ -102,7 +102,7 @@ pub async fn daemon_state(state: State<'_, AppState>) -> Result<DaemonState, Str
let status_inner = status.into_inner();
Ok(DaemonState {
is_ok: status_inner.is_ok,
message: status_inner.message,
message: Some(status_inner.message.unwrap_or(String::from("Daemon OK"))),
error: status_inner.error,
})
}