Skip to content
This repository was archived by the owner on Jul 22, 2020. It is now read-only.

Commit e647f08

Browse files
fix: full screen map mode markers
1 parent 423cff2 commit e647f08

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/v2/components/UI/MapTooltip/index.jsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ type MapTooltipProps = {
88
};
99

1010
const MapTooltip = ({title, ...rest}: MapTooltipProps & TooltipProps) => (
11-
<Tooltip classes={{...rest.classes}} {...rest} title={title()} />
11+
<Tooltip
12+
classes={{...rest.classes}}
13+
{...rest}
14+
title={title()}
15+
PopperProps={{disablePortal: true}}
16+
/>
1217
);
1318

1419
export default MapTooltip;

0 commit comments

Comments
 (0)