Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4876961

Browse files
authoredFeb 3, 2025
Fix A11y bug (#1108)
1 parent 02dbf35 commit 4876961

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎src/common/copilot/user-feedback/CESSurvey.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ function getWebviewContent(feedbackCssUri: vscode.Uri, feedbackJsUri: vscode.Uri
172172
<textarea id="feedbackText" name="feedbackText" rows="5" required></textarea>
173173
<br/>
174174
<p class="privacy-statement">"${vscode.l10n.t('Try and be as specific as possible. Your feedback will be used to improve Copilot. <a href="https://privacy.microsoft.com/en-US/data-privacy-notice"> View privacy details </a>')}"</p>
175-
<button type="submit" class="submit-feedback">"${vscode.l10n.t('Submit')}"</button>
175+
<button tabindex="0" type="submit" class="submit-feedback">"${vscode.l10n.t('Submit')}"</button>
176176
</form>
177177
<script type="module" nonce="${nonce}" src="${feedbackJsUri}"></script>
178178
</body>
@@ -182,4 +182,3 @@ function getWebviewContent(feedbackCssUri: vscode.Uri, feedbackJsUri: vscode.Uri
182182
function useEUEndpoint(geoName: string): boolean {
183183
return geoName === EUROPE_GEO || geoName === UK_GEO;
184184
}
185-

0 commit comments

Comments
 (0)
Please sign in to comment.