mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
set aria label for options dropdowns (#8453)
This commit is contained in:
@@ -193,7 +193,8 @@ export class ResourceTypePickerDialog extends DialogBase {
|
|||||||
const optionSelectBox = this._view.modelBuilder.dropDown().withProperties<azdata.DropDownProperties>({
|
const optionSelectBox = this._view.modelBuilder.dropDown().withProperties<azdata.DropDownProperties>({
|
||||||
values: option.values,
|
values: option.values,
|
||||||
value: option.values[0],
|
value: option.values[0],
|
||||||
width: '300px'
|
width: '300px',
|
||||||
|
ariaLabel: option.displayName
|
||||||
}).component();
|
}).component();
|
||||||
|
|
||||||
this._toDispose.push(optionSelectBox.onValueChanged(() => { this.updateToolsDisplayTable(); }));
|
this._toDispose.push(optionSelectBox.onValueChanged(() => { this.updateToolsDisplayTable(); }));
|
||||||
|
|||||||
Reference in New Issue
Block a user