We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d81080 commit f00e510Copy full SHA for f00e510
src/vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick.ts
@@ -76,7 +76,7 @@ export class McpPromptArgumentPick extends Disposable {
76
const restore = backSnapshots.at(i);
77
quickPick.step = i + 1;
78
quickPick.placeholder = arg.required ? arg.description : `${arg.description || ''} (${localize('optional', 'Optional')})`;
79
- quickPick.title = arg.name;
+ quickPick.title = localize('mcp.prompt.pick.title', 'Value for: {0}', arg.name);
80
quickPick.value = restore?.value ?? ((args.hasOwnProperty(arg.name) && args[arg.name]) || '');
81
quickPick.items = restore?.items ?? [];
82
quickPick.activeItems = restore?.activeItems ?? [];
0 commit comments