Skip to content

Commit

Permalink
Merge pull request #636 from amyyeung17/602-tooltip-a11y
Browse files Browse the repository at this point in the history
Fix #602: Tooltip for share button when tabbing (a11y)
  • Loading branch information
bacitracin authored May 18, 2024
2 parents dde9d9a + 9239690 commit c059e16
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/SinglePropertyDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,8 @@ const SinglePropertyDetail = ({
}}
onMouseEnter={() => setHover(true)}
onMouseLeave={() => setHover(false)}
onFocus={() => setHover(true)}
onBlur={() => setHover(false) }
/>
</Tooltip>
</div>
Expand Down

0 comments on commit c059e16

Please sign in to comment.