From cece717e667a8714d19777228faca011c493e747 Mon Sep 17 00:00:00 2001 From: ValHallaBuilder <286693580+4gjnbzb4zf-sudo@users.noreply.github.com> Date: Tue, 26 May 2026 08:34:08 -0400 Subject: [PATCH 1/5] fix(missions-filter): include 'paused' in the filter button row MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Missions page renders a 'paused' status badge but did not let users filter by it — paused missions only appeared under 'all'. The Mission status enum includes 'paused', so the filter row should too. --- src/routes/missions/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/missions/+page.svelte b/src/routes/missions/+page.svelte index a296c029..d3b157e1 100644 --- a/src/routes/missions/+page.svelte +++ b/src/routes/missions/+page.svelte @@ -259,7 +259,7 @@
- {#each ['all', 'spark', 'draft', 'ready', 'running', 'completed', 'failed'] as status} + {#each ['all', 'spark', 'draft', 'ready', 'running', 'paused', 'completed', 'failed'] as status} {@const count = statusCounts()[status] || 0}