Skip to content

Commit

Permalink
Fix combobox (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
colinlohner committed Aug 3, 2020
1 parent 731e46e commit 0fc98c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/combobox/src/Combobox.js
Expand Up @@ -24,7 +24,7 @@ const Combobox = memo(function Combobox(props) {
...rest
} = props

const disabled = disabled || isLoading
const disabled = props.disabled || isLoading

const [isOpenedByButton, setIsOpenedByButton] = useState(false)

Expand Down

0 comments on commit 0fc98c5

Please sign in to comment.