allow search on visualizer select inputs

This commit is contained in:
jeffvli
2026-01-18 17:17:39 -08:00
parent 6b599bf53d
commit 2dd83b111f
@@ -247,7 +247,13 @@ export const VisualizerSettingsForm = () => {
};
const VisualizerSelect = (props: SelectProps) => {
return <Select styles={{ label: { display: 'flex', justifyContent: 'center' } }} {...props} />;
return (
<Select
searchable
styles={{ label: { display: 'flex', justifyContent: 'center' } }}
{...props}
/>
);
};
const VisualizerSlider = (props: SliderProps & { label?: React.ReactNode }) => {