Skip to content

Commit

Permalink
fix(funnels): fix funnel label (#19419)
Browse files Browse the repository at this point in the history
  • Loading branch information
thmsobrmlr authored Dec 20, 2023
1 parent 87fdf3f commit 71985ea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/src/lib/lemon-ui/Popover/Popover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,11 @@ export const Popover = React.forwardRef<HTMLDivElement, PopoverProps>(function P
})

const [floatingElement, setFloatingElement] = useState<HTMLElement | null>(null)
const mergedReferenceRef = useMergeRefs([referenceRef, extraReferenceRef || null]) as React.RefCallback<HTMLElement>
const mergedReferenceRef = useMergeRefs([
referenceRef,
extraReferenceRef || null,
(children as any)?.ref,
]) as React.RefCallback<HTMLElement>

const arrowStyle = middlewareData.arrow
? {
Expand Down

0 comments on commit 71985ea

Please sign in to comment.