mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
setting aria-label for table (#9647)
* setting aria-label for table * use variable
This commit is contained in:
@@ -340,8 +340,11 @@ export class SummaryPage extends WizardPageBase<DeployClusterWizard> {
|
|||||||
value: localize('deployCluster.LogsClaimSize', "Claim size for logs (GB)"),
|
value: localize('deployCluster.LogsClaimSize', "Claim size for logs (GB)"),
|
||||||
width: 180
|
width: 180
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const storageTableTitle = localize('deployCluster.StorageSettings', "Storage settings");
|
||||||
const storageTable = this.view.modelBuilder.table().withProperties<azdata.TableComponentProperties>({
|
const storageTable = this.view.modelBuilder.table().withProperties<azdata.TableComponentProperties>({
|
||||||
title: localize('deployCluster.StorageSettings', "Storage settings"),
|
title: storageTableTitle,
|
||||||
|
ariaLabel: storageTableTitle,
|
||||||
data: [
|
data: [
|
||||||
[
|
[
|
||||||
localize('deployCluster.ControllerText', "Controller"),
|
localize('deployCluster.ControllerText', "Controller"),
|
||||||
|
|||||||
Reference in New Issue
Block a user