Skip to content

Commit

Permalink
Fix isDisabled in ToolbarToggle (#2650)
Browse files Browse the repository at this point in the history
Co-authored-by: Karel Hala <[email protected]>
  • Loading branch information
fhlavac and karelhala authored Oct 6, 2023
1 parent f138e56 commit f2b1fac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Header/ToolbarToggle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const ToolbarToggle = (props: ToolbarToggleProps) => {
<DropdownItem
key={title}
ouiaId={title}
disabled={isDisabled}
isDisabled={isDisabled}
component={
appId && url
? ({ className: itemClassName }) => (
Expand Down

0 comments on commit f2b1fac

Please sign in to comment.