From 7ee8dac83225613c6e7e654abbd61a2621663c55 Mon Sep 17 00:00:00 2001 From: Richard Wei <54336863+WaysonWei@users.noreply.github.com> Date: Mon, 25 Jul 2022 13:20:36 +1200 Subject: [PATCH] fix tooltip issue for ce (#7281) fix tooltip issue for ce --- app/react/components/Tip/Tooltip/Tooltip.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/react/components/Tip/Tooltip/Tooltip.tsx b/app/react/components/Tip/Tooltip/Tooltip.tsx index c185065d0..be9107e20 100644 --- a/app/react/components/Tip/Tooltip/Tooltip.tsx +++ b/app/react/components/Tip/Tooltip/Tooltip.tsx @@ -13,7 +13,7 @@ export interface Props { } export function Tooltip({ message, position = 'bottom' }: Props) { - const id = `tooltip-${_.uniqueId()}`; + const id = _.uniqueId('tooltip-'); return (