mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Accessibility fixes (#9516)
* add aria label for deploy plan table * shift focus to options dialog when opened * add check for when table is empty
This commit is contained in:
@@ -52,7 +52,9 @@ export class DeployPlanPage extends DacFxConfigPage {
|
||||
}
|
||||
|
||||
async start(): Promise<boolean> {
|
||||
this.table = this.view.modelBuilder.table().component();
|
||||
this.table = this.view.modelBuilder.table().withProperties({
|
||||
ariaLabel: loc.deployPlanTableTitle
|
||||
}).component();
|
||||
this.loader = this.view.modelBuilder.loadingComponent().withItem(this.table).component();
|
||||
this.dataLossComponentGroup = await this.createDataLossComponents();
|
||||
this.noDataLossTextComponent = await this.createNoDataLossText();
|
||||
|
||||
Reference in New Issue
Block a user