Commit 23ee753 1 parent 631a893 commit 23ee753 Copy full SHA for 23ee753
File tree 1 file changed +9
-0
lines changed
src/vs/workbench/contrib/interactiveSession/browser
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 5
5
6
6
import * as dom from 'vs/base/browser/dom' ;
7
7
import { IActionViewItemOptions } from 'vs/base/browser/ui/actionbar/actionViewItems' ;
8
+ import { AriaRole } from 'vs/base/browser/ui/aria/aria' ;
8
9
import { renderIcon } from 'vs/base/browser/ui/iconLabel/iconLabels' ;
9
10
import { IListVirtualDelegate } from 'vs/base/browser/ui/list/list' ;
10
11
import { IListAccessibilityProvider } from 'vs/base/browser/ui/list/listWidget' ;
@@ -479,6 +480,14 @@ export class InteractiveSessionListDelegate implements IListVirtualDelegate<Inte
479
480
480
481
export class InteractiveSessionAccessibilityProvider implements IListAccessibilityProvider < InteractiveTreeItem > {
481
482
483
+ getWidgetRole ( ) : AriaRole {
484
+ return 'list' ;
485
+ }
486
+
487
+ getRole ( element : InteractiveTreeItem ) : AriaRole | undefined {
488
+ return 'listitem' ;
489
+ }
490
+
482
491
getWidgetAriaLabel ( ) : string {
483
492
return localize ( 'interactiveSession' , "Interactive Session" ) ;
484
493
}
You can’t perform that action at this time.
0 commit comments