From 17ecf08cbf3e045360ffecb3901142ae637dac02 Mon Sep 17 00:00:00 2001 From: Paul Date: Wed, 11 Feb 2026 11:15:44 -0800 Subject: [PATCH] Hook menu title rename (#294645) --- .../workbench/contrib/chat/browser/promptSyntax/hookActions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/chat/browser/promptSyntax/hookActions.ts b/src/vs/workbench/contrib/chat/browser/promptSyntax/hookActions.ts index babfb20a486..d59d0c04949 100644 --- a/src/vs/workbench/contrib/chat/browser/promptSyntax/hookActions.ts +++ b/src/vs/workbench/contrib/chat/browser/promptSyntax/hookActions.ts @@ -611,7 +611,7 @@ export async function showConfigureHooksQuickPick( const inputBox = inputDisposables.add(quickInputService.createInputBox()); inputBox.prompt = localize('commands.hook.filename.prompt', "Enter hook file name"); inputBox.placeholder = localize('commands.hook.filename.placeholder', "e.g., hooks, diagnostics, security"); - inputBox.title = localize('commands.hook.selectFolder.title', 'Hook File Location'); + inputBox.title = localize('commands.hook.filename.title', "Hook File Name"); inputBox.buttons = [backButton]; inputBox.ignoreFocusOut = true;