mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
allow search on visualizer select inputs
This commit is contained in:
+7
-1
@@ -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 }) => {
|
||||
|
||||
Reference in New Issue
Block a user