fix tooltip issue for ce (#7281)

fix tooltip issue for ce
pull/7334/head
Richard Wei 2022-07-25 13:20:36 +12:00 committed by GitHub
parent 5b3f099f4e
commit 7ee8dac832
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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