CDropdownToggle disabled state behavior
Boubaker93 opened this issue · 1 comments
Boubaker93 commented
Hello,
I'm using CDropdown
component with variant="nav-item"
and inside I added a CDropdownToggle
that I want to add a disabled property. But when the disabled property is added, the DropDown still is clickable and when clicked it redirects to /#
Here is the sample code that i'm using:
<CHeaderNav style={{ width: '100%' }}>
<CDropdown style={{ width: '100%' }} variant="nav-item">
<CDropdownToggle caret={false} disabled>
<div className="d-flex">
<div style={{ width: '100%' }}>{title || '---'}</div>
</div>
</CDropdownToggle>
<CDropdownMenu>
{array?.map((item) => (
<CDropdownItem
key={item?.id}
onClick={() => {
onChange(item)
}}
>
{item?.title}
</CDropdownItem>
))}
</CDropdownMenu>
</CDropdown>
</CHeaderNav>
Can you guys help me?
Thank you.
System:
- Operating system and version: macOS 14.1.2
- Browser and version: Chrome 120.0.6099.199
Core UI:
- @coreui/coreui-pro: ^4.6.4,
- @coreui/react-pro: 4.15.2
- @coreui/utils: ^2.0.2,
github-actions commented
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions