Skip to content

Commit

Permalink
Merge pull request #1 from carmacleod/car/add-aria-multiselectable
Browse files Browse the repository at this point in the history
Add aria-multiselectable="true" to multiselect treeview
  • Loading branch information
emyarod authored Oct 1, 2020
2 parents d38619d + 9726eaa commit 5f381d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/react/src/components/TreeView/TreeView.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ export default function TreeView({
className={treeClasses}
onKeyDown={handleKeyDown}
ref={treeRootRef}
role="tree">
role="tree"
aria-multiselectable={multiselect}>
{nodesWithProps}
</ul>
</>
Expand Down

0 comments on commit 5f381d1

Please sign in to comment.