Skip to content

Commit

Permalink
Fix bug with detailed booking container blocking hover effect (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathildehaugum authored Nov 14, 2023
1 parent 399009a commit 2a13222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/ConsultantRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ function HoveredWeek(props: {
const { hoveredRowWeek, bookedHoursPerWeek, consultant } = props;
return (
<div
className={`absolute bottom-full left-1/2 -translate-x-1/2 flex flex-col items-center z-20 ${
className={`absolute bottom-full left-1/2 -translate-x-1/2 flex flex-col items-center z-20 pointer-events-none ${
(hoveredRowWeek != bookedHoursPerWeek.weekNumber ||
consultant.detailedBooking
.map((d) =>
Expand Down

0 comments on commit 2a13222

Please sign in to comment.