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

Commit

Permalink
fix: full screen map mode markers
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-calavera committed Oct 29, 2019
1 parent 423cff2 commit e647f08
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/v2/components/UI/MapTooltip/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ type MapTooltipProps = {
};

const MapTooltip = ({title, ...rest}: MapTooltipProps & TooltipProps) => (
<Tooltip classes={{...rest.classes}} {...rest} title={title()} />
<Tooltip
classes={{...rest.classes}}
{...rest}
title={title()}
PopperProps={{disablePortal: true}}
/>
);

export default MapTooltip;

0 comments on commit e647f08

Please sign in to comment.