mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 01:25:36 -05:00
Fix for propagating aria-label title of form components to loading component (#8051)
This commit is contained in:
@@ -331,6 +331,9 @@ class FormContainerBuilder extends GenericContainerBuilder<azdata.FormContainer,
|
||||
}
|
||||
if (formComponent.title && componentWrapper) {
|
||||
componentWrapper.ariaLabel = formComponent.title;
|
||||
if (componentWrapper instanceof LoadingComponentWrapper) {
|
||||
componentWrapper.component.ariaLabel = formComponent.title;
|
||||
}
|
||||
}
|
||||
let actions: string[] = undefined;
|
||||
if (formComponent.actions) {
|
||||
|
||||
Reference in New Issue
Block a user