Skip to content

Commit

Permalink
fix: All values being selected in Select (apache#25202)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina authored Sep 6, 2023
1 parent d849642 commit e605d6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset-frontend/src/components/Select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,13 +208,13 @@ const Select = forwardRef(
() =>
!isSingleMode &&
allowSelectAll &&
fullSelectOptions.length > 0 &&
selectOptions.length > 0 &&
enabledOptions.length > 1 &&
!inputValue,
[
isSingleMode,
allowSelectAll,
fullSelectOptions.length,
selectOptions.length,
enabledOptions.length,
inputValue,
],
Expand Down

0 comments on commit e605d6d

Please sign in to comment.