diff --git a/superset-frontend/src/components/Select/Select.tsx b/superset-frontend/src/components/Select/Select.tsx index 770ef1df4a..89c62ef8bd 100644 --- a/superset-frontend/src/components/Select/Select.tsx +++ b/superset-frontend/src/components/Select/Select.tsx @@ -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, ],