Skip to content

Commit 1a2790b

Browse files
authored
Merge pull request microsoft#186449 from microsoft/merogge/aria-input
fix aria input for chat
2 parents 224ae7c + 4d52254 commit 1a2790b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/chat/browser/chatInputPart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export class ChatInputPart extends Disposable implements IHistoryNavigationWidge
101101
const verbose = this.configurationService.getValue<boolean>(AccessibilityVerbositySettingId.Chat);
102102
if (verbose) {
103103
const kbLabel = this.keybindingService.lookupKeybinding('chat.action.accessibilityHelp')?.getLabel();
104-
return kbLabel ? localize('actions.chat.accessibiltyHelp', "Chat Input, Type code here and press enter to run. Use {0} for Chat Accessibility Help.", kbLabel) : localize('chatInput.accessibilityHelpNoKb', "Chat Input, Type code here and press Enter to run. Use the Chat Accessibility Help command for more information.");
104+
return kbLabel ? localize('actions.chat.accessibiltyHelp', "Chat Input, Type to ask questions or type / for topics, press enter to send out the request. Use {0} for Chat Accessibility Help.", kbLabel) : localize('chatInput.accessibilityHelpNoKb', "Chat Input, Type code here and press Enter to run. Use the Chat Accessibility Help command for more information.");
105105
}
106106
return localize('chatInput', "Chat Input");
107107
}

0 commit comments

Comments
 (0)