Compare commits

...

1 Commits

Author SHA1 Message Date
waysonwei
84582d6e1f fix tooltip uniqueid generated issue 2022-07-09 15:16:56 +12:00

View File

@@ -13,7 +13,7 @@ export interface Props {
}
export function Tooltip({ message, position = 'bottom' }: Props) {
const id = `tooltip-${_.uniqueId()}`;
const id = _.uniqueId('tooltip-');
return (
<span