Open m1cm1c opened 5 months ago
import {Tooltip} from '@mui/joy'; export function TooltipBug() { return <> <Tooltip title="foo"> <div>f</div> </Tooltip> <Tooltip title="bar"> <CustomComponent /> </Tooltip> </>; } function CustomComponent() { return <div>b</div>; }
shows "foo" but does not show "bar".
Yields:
<div aria-label="foo" class="">f</div> <div>b</div>
<div aria-label="foo" class="">f</div> <div aria-label="bar" class="">b</div>
i want to use components
Browser: Mozilla Firefox 126.0.1
npx @mui/envinfo
Search keywords: tooltip
Thanks for reporting the issue! Joy UI development is temporarily on hold as the maintainers focus on the next two major releases of Material UI
Steps to reproduce
shows "foo" but does not show "bar".
Current behavior
Yields:
Expected behavior
Context
i want to use components
Your environment
Browser: Mozilla Firefox 126.0.1
``` System: OS: Linux 5.19 Manjaro Linux Binaries: Node: 18.18.2 - ~/.nvm/versions/node/v18.18.2/bin/node npm: 9.8.1 - ~/.nvm/versions/node/v18.18.2/bin/npm pnpm: Not Found Browsers: Chrome: Not Found ```npx @mui/envinfo
Search keywords: tooltip