change lightbulb widget role (#210612)

* revert role

* change widget role to listbox instead?
This commit is contained in:
Justin Chen 2024-04-24 00:46:50 -07:00 committed by GitHub
parent a4784887a7
commit ad0ef25421
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -68,7 +68,7 @@ export class LightBulbWidget extends Disposable implements IContentWidget {
super();
this._domNode = dom.$('div.lightBulbWidget');
this._domNode.role = 'menu';
this._domNode.role = 'listbox';
this._register(Gesture.ignoreTarget(this._domNode));
this._editor.addContentWidget(this);