File tree 2 files changed +2
-6
lines changed
plugins/main/public/components/common/form
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,6 @@ export const InputFormSelect = ({
7
7
value,
8
8
onChange,
9
9
placeholder,
10
- selectedOptions,
11
- isDisabled,
12
- isClearable,
13
10
dataTestSubj,
14
11
} : IInputFormType ) => {
15
12
return (
@@ -18,9 +15,6 @@ export const InputFormSelect = ({
18
15
value = { value }
19
16
onChange = { onChange }
20
17
placeholder = { placeholder }
21
- selectedOptions = { selectedOptions }
22
- isDisabled = { isDisabled }
23
- isClearable = { isClearable }
24
18
data-test-subj = { dataTestSubj }
25
19
/>
26
20
) ;
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ export interface IInputFormType {
7
7
isInvalid ?: boolean ;
8
8
options : any ;
9
9
setInputRef : ( reference : any ) => void ;
10
+ placeholder : string ;
11
+ dataTestSubj : string ;
10
12
}
11
13
12
14
export interface IInputForm {
You can’t perform that action at this time.
0 commit comments