From 207f6454da27db2e39a74eaf1ecc57c30f91a477 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Tue, 26 Sep 2023 05:29:08 +0200 Subject: [PATCH] fix #194043 (#194052) --- .../browser/userDataProfileImportExportService.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService.ts b/src/vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService.ts index fba37f8e818..2192f4daec0 100644 --- a/src/vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService.ts +++ b/src/vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService.ts @@ -373,6 +373,7 @@ export class UserDataProfileImportExportService extends Disposable implements IU const updateIcon = (updated: ThemeIcon | undefined) => { icon = updated ?? DEFAULT_ICON; profileIconElement.className = `profile-icon ${ThemeIcon.asClassName(icon)}`; + profileIconElement.ariaLabel = localize('select icon', "Icon: {0}", icon.id); }; disposables.add(iconSelectBox.onDidSelect(selectedIcon => { if (icon.id !== selectedIcon.id) {