Add aria label to connection string pages (#16420)

This commit is contained in:
Charles Gagnon
2021-07-23 16:55:02 -07:00
committed by GitHub
parent 151522013f
commit be0edf9606
2 changed files with 3 additions and 1 deletions

View File

@@ -104,7 +104,8 @@ export abstract class BaseInputKeyValue extends KeyValue {
this.input = modelBuilder.inputBox().withProps({
value: value,
readOnly: true,
multiline: multiline
multiline: multiline,
ariaLabel: loc.connectionString(key)
}).component();
const inputContainer = modelBuilder.flexContainer().withLayout({ alignItems: 'center' }).component();