Skip to content

Commit

Permalink
fix(md): wrap tooltip content with span (#9241)
Browse files Browse the repository at this point in the history
  • Loading branch information
ranihorev committed May 26, 2021
1 parent 0ecc87d commit 1bb91d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ export const VersionBuild = ({ build, withPrefix }: IVersionBuildProps) => {

return build.version ? (
<Tooltip value={build.version} delayShow={TOOLTIP_DELAY_SHOW}>
{content}
<span>{content}</span>
</Tooltip>
) : (
<>{content}</>
Expand Down

0 comments on commit 1bb91d2

Please sign in to comment.