Skip to content

Commit

Permalink
Fix accessibility issue in Pages Copilot pane (#1076)
Browse files Browse the repository at this point in the history
Fix accessibility issue in `Send` button in Power Pages Copilot pane. Updated the `aria-label` to `Send` instead of `Match Case`
  • Loading branch information
priyanshu92 authored Dec 16, 2024
1 parent c115f29 commit bb7e469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/copilot/PowerPagesCopilot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ export class PowerPagesCopilot implements vscode.WebviewViewProvider {
<label for="chat-input" class="input-label hide" id="input-label-id"></label>
<div class="input-container">
<textarea rows=1 placeholder="${vscode.l10n.t('What do you need help with?')}" id="chat-input" class="input-field"></textarea>
<button aria-label="Match Case" id="send-button" class="send-button">
<button aria-label="Send" id="send-button" class="send-button">
<span>
${sendIconSvg}
</span>
Expand Down

0 comments on commit bb7e469

Please sign in to comment.