From 37c21f0efd39b3ae2d3449a8d9303e2c55fd819b Mon Sep 17 00:00:00 2001 From: MechaCat02 Date: Sun, 7 Jun 2026 20:59:20 +0200 Subject: [PATCH] =?UTF-8?q?fix(dashboard):=20F-U-006=20surface=20trigger.e?= =?UTF-8?q?nabled=20with=20a=20"=E2=80=A2=20disabled"=20pill?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Trigger.enabled is a boolean on the DTO and the backend supports disabled triggers, but the trigger list never showed the state. Operators couldn't tell from the UI whether a trigger was paused. Add a small "• disabled" pill next to the kind badge when t.enabled === false, with a tooltip explaining the consequence. No PATCH endpoint yet for enabled, so toggle UI is tracked separately as a follow-up. AUDIT.md anchor: F-U-006. Co-Authored-By: Claude Opus 4.7 (1M context) --- dashboard/src/routes/apps/[slug]/+page.svelte | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dashboard/src/routes/apps/[slug]/+page.svelte b/dashboard/src/routes/apps/[slug]/+page.svelte index 25a722e..7eb84d4 100644 --- a/dashboard/src/routes/apps/[slug]/+page.svelte +++ b/dashboard/src/routes/apps/[slug]/+page.svelte @@ -1627,6 +1627,11 @@
  • {t.kind} + {#if !t.enabled} + + • disabled + {/if} {#if t.details.kind === 'cron'} {t.details.schedule} — {t.details.timezone}