Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix activity bar touch events on iphone
I'm not sure what the issue is here, the minimal fix is this: ``` diff --git a/client/src/components/Popper/usePopper.ts b/client/src/components/Popper/usePopper.ts index ad18847d8d..183d2e49be 100644 --- a/client/src/components/Popper/usePopper.ts +++ b/client/src/components/Popper/usePopper.ts @@ -190,7 +190,7 @@ export function usePopperjs( on(referenceRef.value!, "mouseout", doMouseout); on(popperRef.value!, "mouseout", doMouseout); on(referenceRef.value!, "mousedown", doMouseout); - on(popperRef.value!, "mousedown", doMouseout); + // on(popperRef.value!, "mousedown", doMouseout); break; } ``` but I think we can probably just rely on events happening on referenceRef.
- Loading branch information