From bd4833ff408b5ec1ed2ea426a7f3cb6c4faf7206 Mon Sep 17 00:00:00 2001 From: AlexRV12 <71396855+AlexRV12@users.noreply.github.com> Date: Fri, 28 Aug 2026 10:51:15 +0200 Subject: [PATCH] fix: divide the run form card into header, fields and actions --- .../copilot/chat/RunArgsFormDisplay.svelte | 111 +++++++++--------- 1 file changed, 58 insertions(+), 53 deletions(-) diff --git a/frontend/src/lib/components/copilot/chat/RunArgsFormDisplay.svelte b/frontend/src/lib/components/copilot/chat/RunArgsFormDisplay.svelte index 9c22f6cb16..37552a894f 100644 --- a/frontend/src/lib/components/copilot/chat/RunArgsFormDisplay.svelte +++ b/frontend/src/lib/components/copilot/chat/RunArgsFormDisplay.svelte @@ -96,10 +96,10 @@ scrollIntoView leaves the Run button uncovered. -->
@@ -113,8 +113,9 @@ -
+ Not an input of this script, so it will not be sent: + {runForm.droppedKeys.join(', ')} +
+ {/if} + {#if runForm.unshowableKeys?.length} ++ Sent in a shape this form has no field for, so it opened empty: + {runForm.unshowableKeys.join(', ')} +
+ {/if} + {#if runForm.resetKeys?.length} ++ Disabled by this script, so it will run with its default: + {runForm.resetKeys.join(', ')} +
+ {/if} + {#if runForm.strippedKeys?.length} ++ A secret or a file, so it opened empty for you to fill in: + {runForm.strippedKeys.join(', ')} +
+ {/if} + {#if planMode} +{PLAN_MODE_MESSAGES.runFormRefused}
+ {/if} - -