Skip to content

Commit

Permalink
fix(Popup): 修复移动鼠标弹出层闪烁 (#1769)
Browse files Browse the repository at this point in the history
  • Loading branch information
HelKyle authored Dec 5, 2022
1 parent a3f66b1 commit 61a2e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/popup/Popup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ const Popup = forwardRef((props: PopupProps, ref: React.RefObject<PopupRef>) =>
<Portal triggerNode={getRefDom(triggerRef)} attach={attach} ref={portalRef}>
<CSSTransition
appear
timeout={DEFAULT_TRANSITION_TIMEOUT}
timeout={0}
in={visible}
nodeRef={popupRef}
{...getTransitionParams({
Expand Down

0 comments on commit 61a2e91

Please sign in to comment.