mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
add aria labels to a couple radio groups in sql database projects (#22446)
This commit is contained in:
@@ -416,7 +416,7 @@ export class PublishDatabaseDialog {
|
|||||||
const radioButtonContainer = view.modelBuilder.flexContainer()
|
const radioButtonContainer = view.modelBuilder.flexContainer()
|
||||||
.withLayout({ flexFlow: 'column' })
|
.withLayout({ flexFlow: 'column' })
|
||||||
.withItems([this.existingServerRadioButton, this.dockerServerRadioButton])
|
.withItems([this.existingServerRadioButton, this.dockerServerRadioButton])
|
||||||
.withProps({ ariaRole: 'radiogroup' })
|
.withProps({ ariaRole: 'radiogroup', ariaLabel: constants.publishTo })
|
||||||
.component();
|
.component();
|
||||||
|
|
||||||
let flexRadioButtonsModel: azdataType.FlexContainer = view.modelBuilder.flexContainer()
|
let flexRadioButtonsModel: azdataType.FlexContainer = view.modelBuilder.flexContainer()
|
||||||
|
|||||||
@@ -492,7 +492,7 @@ export class UpdateProjectFromDatabaseDialog {
|
|||||||
let radioButtons = view.modelBuilder.flexContainer()
|
let radioButtons = view.modelBuilder.flexContainer()
|
||||||
.withLayout({ flexFlow: 'column' })
|
.withLayout({ flexFlow: 'column' })
|
||||||
.withItems([this.compareActionRadioButton, this.updateActionRadioButton])
|
.withItems([this.compareActionRadioButton, this.updateActionRadioButton])
|
||||||
.withProps({ ariaRole: 'radiogroup' })
|
.withProps({ ariaRole: 'radiogroup', ariaLabel: constants.actionLabel })
|
||||||
.component();
|
.component();
|
||||||
|
|
||||||
const actionLabel = view.modelBuilder.text().withProps({
|
const actionLabel = view.modelBuilder.text().withProps({
|
||||||
|
|||||||
Reference in New Issue
Block a user