File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { Button , Classes , MenuItem } from '@blueprintjs/core' ;
2
- import { ItemRenderer , MultiSelect2 } from '@blueprintjs/select' ;
2
+ import { ItemRenderer , MultiSelect } from '@blueprintjs/select' ;
3
3
import { trim } from 'lodash' ;
4
4
import React , { useCallback , useState } from 'react' ;
5
5
@@ -15,8 +15,6 @@ interface Props {
15
15
onChange ?: ( filters : FilterEntry [ ] ) => void ;
16
16
}
17
17
18
- const FilterMultiSelect = MultiSelect2 . ofType < FilterEntry | null > ( ) ;
19
-
20
18
export const FlowsFilterInput = ( props : Props ) => {
21
19
const [ userInput , setUserInput ] = useState < string > ( '' ) ;
22
20
@@ -70,7 +68,7 @@ export const FlowsFilterInput = (props: Props) => {
70
68
) : undefined ;
71
69
72
70
return (
73
- < FilterMultiSelect
71
+ < MultiSelect
74
72
initialContent = { null }
75
73
className = { css . container }
76
74
query = { userInput }
You can’t perform that action at this time.
0 commit comments