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 @@ -

+ dropped — a secret it opened empty among them — below the fold. The dividers come + from the card, as in DrawerContent, so they bleed to its edges. --> +
{#if hasArgs} +
+ {#if runForm.droppedKeys?.length} +

+ 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} - -
- - + +
+ + +