diff --git a/desktop/flipper-plugin/src/ui/PowerSearch/index.tsx b/desktop/flipper-plugin/src/ui/PowerSearch/index.tsx index 70bc9b475..9bdcc7212 100644 --- a/desktop/flipper-plugin/src/ui/PowerSearch/index.tsx +++ b/desktop/flipper-plugin/src/ui/PowerSearch/index.tsx @@ -154,7 +154,11 @@ export const PowerSearch: React.FC = ({config}) => { }, ]); }} - value={''} + filterOption={(inputValue, option) => { + return !!option?.label + .toLowerCase() + .includes(inputValue.toLowerCase()); + }} /> );