This commit is contained in:
2026-05-28 21:32:46 +02:00
parent e8cac569e3
commit e82e30dd02
29 changed files with 2485 additions and 97 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ type Step = {
detail?: string;
};
// ShutdownProgress is a full-screen overlay that appears while HamLog is
// ShutdownProgress is a full-screen overlay that appears while OpsLog is
// running its close-time tasks (backup, future LoTW upload, ...). It
// listens for `shutdown:start` / `shutdown:update` / `shutdown:done`
// events from the backend and renders a checklist that updates as each
@@ -30,7 +30,7 @@ export function ShutdownProgress() {
return (
<div className="fixed inset-0 z-[9999] flex items-center justify-center bg-black/40 backdrop-blur-sm">
<div className="bg-card border border-border rounded-lg shadow-xl p-6 min-w-[360px] max-w-[480px]">
<div className="text-sm font-semibold mb-3 text-foreground">Closing HamLog</div>
<div className="text-sm font-semibold mb-3 text-foreground">Closing OpsLog</div>
<div className="space-y-2">
{steps.length === 0 ? (
<div className="text-xs text-muted-foreground italic">Nothing to do, exiting.</div>