From 2ba5e6ad4fe438c560839cf9b19c8eebb6c63244 Mon Sep 17 00:00:00 2001 From: Aron Prins Date: Mon, 13 Apr 2026 12:00:04 +0200 Subject: [PATCH] fix(ui): mark webhook kind as COMING SOON in trigger add dialog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Match the production behaviour that the old inline add form had: webhook is visible in the kind dropdown but disabled with a "— COMING SOON" suffix when creating a new trigger. The edit dialog still lets existing webhook triggers be edited (kind picker is disabled on edit regardless). --- ui/src/components/TriggerDialog.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ui/src/components/TriggerDialog.tsx b/ui/src/components/TriggerDialog.tsx index 5bceadd33c..9cf0da74be 100644 --- a/ui/src/components/TriggerDialog.tsx +++ b/ui/src/components/TriggerDialog.tsx @@ -173,8 +173,13 @@ export function TriggerDialog({ {triggerKinds.map((kind) => ( - + {kind} + {!isEdit && kind === "webhook" ? " — COMING SOON" : ""} ))}