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
I would want to have a custom span button, with dropdown attached. Try this code:
span
return ( <Dropdown label="Dropdown button" disabled={true} renderTrigger={() => <span>[Custom Button]</span> }> <Dropdown.Item>Dashboard</Dropdown.Item> <Dropdown.Item>Settings</Dropdown.Item> <Dropdown.Item>Earnings</Dropdown.Item> <Dropdown.Item>Sign out</Dropdown.Item> </Dropdown> );
In case disabled = {true}, the dropdown still appears when clicking.
disabled = {true}
In case disabled = {true}, the dropdown should not appear.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce
I would want to have a custom
span
button, with dropdown attached.Try this code:
Current behavior
In case
disabled = {true}
, the dropdown still appears when clicking.Expected behavior
In case
disabled = {true}
, the dropdown should not appear.Context
The text was updated successfully, but these errors were encountered: