mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 20:29:36 +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) => {
|
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 }) => {
|
const VisualizerSlider = (props: SliderProps & { label?: React.ReactNode }) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user