Skip to content

Commit

Permalink
fix(Menu): 层级超过Drawer弹层问题 #566 (#613)
Browse files Browse the repository at this point in the history
  • Loading branch information
nullptr-z committed Mar 4, 2022
1 parent 948a65d commit 92a1bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-overlay-trigger/src/index.tsx
Expand Up @@ -97,7 +97,7 @@ export default React.forwardRef<OverlayTriggerRef, OverlayTriggerProps>((props,
...other
} = props;

const zIndex = useRef<number>(999);
const zIndex = useRef<number>(990);
const triggerRef = useRef<HTMLElement>();
const popupRef = useRef<HTMLElement>();
const timeoutRef = useRef<number[]>([]);
Expand Down

0 comments on commit 92a1bea

Please sign in to comment.