diff --git a/public/app/core/components/Select/OrgPicker.tsx b/public/app/core/components/Select/OrgPicker.tsx index e465decd529..27214d9f18e 100644 --- a/public/app/core/components/Select/OrgPicker.tsx +++ b/public/app/core/components/Select/OrgPicker.tsx @@ -45,8 +45,11 @@ export function OrgPicker({ onSelected, className, inputId, autoFocus, excludeOr className={className} isLoading={orgOptionsState.loading} defaultOptions={true} - isSearchable={false} loadOptions={getOrgOptions} + filterOption={(option, rawInput) => { + const input = rawInput.toLowerCase(); + return !!option.value?.name.toLowerCase().includes(input); + }} onChange={onSelected} placeholder="Select organization" noOptionsMessage="No organizations found"