diff --git a/web/pgadmin/static/js/components/FormComponents.jsx b/web/pgadmin/static/js/components/FormComponents.jsx index edac3171fbf..c9b797122ad 100644 --- a/web/pgadmin/static/js/components/FormComponents.jsx +++ b/web/pgadmin/static/js/components/FormComponents.jsx @@ -979,7 +979,7 @@ export function InputSelect({ref, cid, helpid, onChange, options, readonly = fal const onChangeOption = useCallback((selectVal) => { if (_.isArray(selectVal)) { // Check if select all option is selected - if (!_.isUndefined(selectVal.find(x => x.label === '')))) { selectVal = filteredOptions; } /* If multi select options need to be in some format by UI, use formatter */