From d5b03896acc796700bfcb4b7c4871fd04da1a1d2 Mon Sep 17 00:00:00 2001 From: Guilhem Lemouel Date: Tue, 25 Aug 2026 17:32:16 +0200 Subject: [PATCH] fix: a row whose migrations are running does not offer "Set up" Found by walking every branch on row.status rather than the ones I remembered: `running` falls through to the catch-all action, which labelled itself "Set up" in accent. Disabled, so nothing could come of it, but it is the same label-outruns-state mistake the last rounds were spent on. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01Xg8vXUuHCH3aRkf91sfxjx --- frontend/src/lib/components/ImportSetupStep.svelte | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/frontend/src/lib/components/ImportSetupStep.svelte b/frontend/src/lib/components/ImportSetupStep.svelte index fd318b03bc..784dda5acf 100644 --- a/frontend/src/lib/components/ImportSetupStep.svelte +++ b/frontend/src/lib/components/ImportSetupStep.svelte @@ -558,13 +558,21 @@ {row.status === 'failed' ? 'Run migrations again' : 'Run migrations'} {:else} + {/if} {/snippet}