We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In LeanPopover.tsx the onClick should have been on Popover.Button. But due to a bug, the button ignores user-defined onClick prop.
onClick
<div onClick={onApply}> <Popover.Button className='text-primary-contrast bg-slate-800 rounded-md px-2 py-0.5'> {btnApplyLabel} </Popover.Button> </div>
To do:
@tailwindlabs/headlessui
<Popover.Button onClick={onApply} ...
The text was updated successfully, but these errors were encountered:
Hey @vnugent, didn't see a way to assign this issue to myself, but created a pull request to address it: #300
This is my first PR for open-tacos, so let me know if I missed any steps in the process.
Sorry, something went wrong.
I think only project's team members with Write permission can assign issues. I'm going to send you an invite. Thanks for the PR!
tittaenalg
No branches or pull requests
Background:
In LeanPopover.tsx the
onClick
should have been on Popover.Button. But due to a bug, the button ignores user-defined onClick prop.To do:
@tailwindlabs/headlessui
lib to newer version<Popover.Button onClick={onApply} ...
The text was updated successfully, but these errors were encountered: