From 8213774fa88ed6d40d8953d19d6ec9e9870dffac Mon Sep 17 00:00:00 2001 From: Guilhem Lemouel Date: Thu, 13 Aug 2026 10:04:41 +0200 Subject: [PATCH] fix: explain why the run page edit entry is disabled Co-Authored-By: Claude Opus 5 (1M context) --- frontend/src/routes/(root)/(logged)/run/[...run]/+page.svelte | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/routes/(root)/(logged)/run/[...run]/+page.svelte b/frontend/src/routes/(root)/(logged)/run/[...run]/+page.svelte index 6d9d19942c..295c0e343a 100644 --- a/frontend/src/routes/(root)/(logged)/run/[...run]/+page.svelte +++ b/frontend/src/routes/(root)/(logged)/run/[...run]/+page.svelte @@ -577,6 +577,9 @@ icon: Pen, href: `/${kind}s/edit/${path}?workspace=${$workspaceStore}`, disabled: !showEditButton, + // Only while disabled: an enabled item renders this as an ⓘ next to the label, + // which would be noise on an entry that needs no explanation. + tooltip: showEditButton ? undefined : 'Direct edits are disabled in this workspace', onClick: () => { $initialArgsStore = job?.args }