Skip to content

Commit

Permalink
fix(Dropdown): fix defaults - caused tests to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
YossiSaadi committed May 19, 2024
1 parent 3ec4361 commit f6a81c0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/core/src/components/Dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ const Dropdown: VibeComponent<DropdownComponentProps, HTMLElement> & {
optionWrapperClassName,
singleValueWrapperClassName,
dropdownMenuWrapperClassName,
placeholder,
disabled,
readOnly,
placeholder = "",
disabled = false,
readOnly = false,
withReadOnlyStyle,
onMenuOpen = NOOP,
onMenuClose = NOOP,
Expand Down Expand Up @@ -101,9 +101,9 @@ const Dropdown: VibeComponent<DropdownComponentProps, HTMLElement> & {
isOptionSelected,
insideOverflowContainer = false,
insideOverflowWithTransformContainer = false,
tooltipContent,
tooltipContent = "",
onKeyDown = NOOP,
isLoading,
isLoading = false,
loadingMessage,
ariaLabel,
tabSelectsValue = true,
Expand Down

0 comments on commit f6a81c0

Please sign in to comment.