File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
kafka-ui-react-app/src/components/Topics/Topic/Details/Messages/Filters Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import { BASE_PARAMS } from 'lib/constants';
2222import Input from 'components/common/Input/Input' ;
2323import Select from 'components/common/Select/Select' ;
2424import { Button } from 'components/common/Button/Button' ;
25+ import Search from 'components/common/Search/Search' ;
2526import FilterModal , {
2627 FilterEdit ,
2728} from 'components/Topics/Topic/Details/Messages/Filters/FilterModal' ;
@@ -348,14 +349,10 @@ const Filters: React.FC<FiltersProps> = ({
348349 < S . FiltersWrapper >
349350 < div >
350351 < S . FilterInputs >
351- < Input
352- inputSize = "M"
353- id = "searchText"
354- type = "text"
355- leftIcon = "fas fa-search"
352+ < Search
356353 placeholder = "Search"
357354 value = { query }
358- onChange = { ( { target : { value } } ) => setQuery ( value ) }
355+ handleSearch = { ( value : string ) => setQuery ( value ) }
359356 />
360357 < S . SeekTypeSelectorWrapper >
361358 < Select
You can’t perform that action at this time.
0 commit comments