Skip to content

Commit

Permalink
fix(structured-list): remove aria-busy from row (#16067)
Browse files Browse the repository at this point in the history
  • Loading branch information
janhassel committed Mar 27, 2024
1 parent ef3b711 commit 77423b0
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -287,14 +287,13 @@ export function StructuredListRow(props: StructuredListRowProps) {
};
useOutsideClick(itemRef, handleClick);
return head ? (
<div role="row" {...other} className={classes} aria-busy="true">
<div role="row" {...other} className={classes}>
{selection && <StructuredListCell head></StructuredListCell>}
{children}
</div>
) : (
// eslint-disable-next-line jsx-a11y/interactive-supports-focus
<div
aria-busy="true"
{...other}
role="row"
className={classes}
Expand Down

0 comments on commit 77423b0

Please sign in to comment.