From ba66aa939b6f2b161a8b482a24ceb5278a56c98b Mon Sep 17 00:00:00 2001 From: MokireddySampath <120497218+MokireddySampath@users.noreply.github.com> Date: Tue, 9 May 2023 23:42:04 +0530 Subject: [PATCH] Defect 2280249 (#1432) * autoscale and manual radiobuutton fixes * alt text attribute for images * Revert "alt text attribute for images" This reverts commit 5a660551c6289d475b6298f90abc9d149146772e. * alt text for decorative images * sev2 accessibilitydefects in data explorer * Commit to my local branch * role has been added to graphic tag * Update TableEntity.tsx * Update ThroughputInput.tsx * Update ThroughputInput.test.tsx.snap * Update TreeComponent.tsx * Update TableEntity.tsx * Update AddCollectionPanel.tsx * Update AddCollectionPanel.tsx * Update AddCollectionPanel.tsx * Update AddCollectionPanel.tsx * Update AddCollectionPanel.tsx * Update SplashScreen.tsx * Update TreeComponent.test.tsx.snap * Update TreeComponent.test.tsx.snap --- src/Explorer/Graph/GraphExplorerComponent/D3ForceGraph.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Explorer/Graph/GraphExplorerComponent/D3ForceGraph.ts b/src/Explorer/Graph/GraphExplorerComponent/D3ForceGraph.ts index b6d8717c4..06832c151 100644 --- a/src/Explorer/Graph/GraphExplorerComponent/D3ForceGraph.ts +++ b/src/Explorer/Graph/GraphExplorerComponent/D3ForceGraph.ts @@ -729,6 +729,7 @@ export class D3ForceGraph implements GraphRenderer { var iconGroup = newNodes .append("g") .attr("class", "iconContainer") + .attr("role", "group") .attr("tabindex", 0) .attr("aria-label", (d: D3Node) => { return this.retrieveNodeCaption(d);