Skip to content

Commit

Permalink
fix isDisabled
Browse files Browse the repository at this point in the history
  • Loading branch information
jsartisan committed Feb 17, 2025
1 parent 64de1d8 commit 836cae1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const MultiSelect = <T extends { label: string; value: string }>(
<FieldLabel
{...labelProps}
contextualHelp={contextualHelp}
isDisabled={Boolean(isDisabled) || Boolean(isLoading)}
isDisabled={isDisabled}
isRequired={isRequired}
// this is required to imitate the behavior where on click of label, the trigger or input is focused.
// In our select component, this is done by the useSelect hook. Since we don't have that for multi select,
Expand Down

0 comments on commit 836cae1

Please sign in to comment.