add aria label for checkboxes in declrative table (#22393)

This commit is contained in:
Kim Santiago
2023-03-21 16:35:28 -07:00
committed by GitHub
parent 62ece298cc
commit 21bb7eb482

View File

@@ -242,6 +242,8 @@ export default class DeclarativeTableComponent extends ContainerBase<any, azdata
} else {
return localize('blankValue', "blank");
}
} else if (cellData?.ariaLabel) {
return cellData.ariaLabel;
}
return '';