Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tooltip. Not always opens when used as Select.Options content #1088

Closed
zzzorgo opened this issue Nov 3, 2023 · 2 comments · Fixed by #1239
Closed

Tooltip. Not always opens when used as Select.Options content #1088

zzzorgo opened this issue Nov 3, 2023 · 2 comments · Fixed by #1239

Comments

@zzzorgo
Copy link
Contributor

zzzorgo commented Nov 3, 2023

Expected behaviour: tooltip is shown after the specified delay on every mouse enter
Actual behaviour: sometimes tooltip will not show (see the video)

Minimal example:

        <Select>
            {[1, 2, 3, 4].map((num) => (
                <Select.Option
                    key={num}
                    value={num.toString()}
                    content={
                        <Tooltip content={num}>
                            <span>{num}</span>
                        </Tooltip>
                    }
                />
            ))}
        </Select>
Screen.Recording.2023-11-03.at.10.53.49.mov
@korvin89
Copy link
Contributor

korvin89 commented Jan 9, 2024

Hey @zzzorgo! Sorry for long response. This bug will be fixed here.

FYI popup won't triggered by hovering on options padding area

@korvin89
Copy link
Contributor

Will be fixed in the next release

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants