Skip to content

Commit

Permalink
fix checkbox name
Browse files Browse the repository at this point in the history
  • Loading branch information
mituron committed Dec 16, 2024
1 parent e0eb96c commit 4da4f21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const SelectionCard = props => {
<Card
className={styles.card}
{...props}
floatingAction={<Checkbox onChange={onSelectedCardChange} checked={selected} />}
floatingAction={<Checkbox aria-label={props.displayName} onChange={onSelectedCardChange} checked={selected} />}
selected={selected}
onSelectionChange={onSelectedCardChange}
// onMouseOver={() => setHovered(true)}
Expand Down

0 comments on commit 4da4f21

Please sign in to comment.