Skip to content
2 changes: 1 addition & 1 deletion code/core/src/manager/components/sidebar/Tree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ const Node = React.memo<NodeProps>(function Node({
<BranchNode
id={id}
style={color ? { color } : {}}
aria-controls={item.children && item.children[0]}
aria-controls={item.children && item.children.join(' ')}
aria-expanded={isExpanded}
depth={isOrphan ? item.depth : item.depth - 1}
isComponent={item.type === 'component'}
Expand Down
Loading