Skip to content

Commit f00e510

Browse files
authored
mcp: tweak title of prompt argument pick (microsoft#250001)
1 parent 9d81080 commit f00e510

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export class McpPromptArgumentPick extends Disposable {
7676
const restore = backSnapshots.at(i);
7777
quickPick.step = i + 1;
7878
quickPick.placeholder = arg.required ? arg.description : `${arg.description || ''} (${localize('optional', 'Optional')})`;
79-
quickPick.title = arg.name;
79+
quickPick.title = localize('mcp.prompt.pick.title', 'Value for: {0}', arg.name);
8080
quickPick.value = restore?.value ?? ((args.hasOwnProperty(arg.name) && args[arg.name]) || '');
8181
quickPick.items = restore?.items ?? [];
8282
quickPick.activeItems = restore?.activeItems ?? [];

0 commit comments

Comments
 (0)