File tree Expand file tree Collapse file tree
plugins/main/public/components/common/form Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,9 +7,6 @@ export const InputFormSelect = ({
77 value,
88 onChange,
99 placeholder,
10- selectedOptions,
11- isDisabled,
12- isClearable,
1310 dataTestSubj,
1411} : IInputFormType ) => {
1512 return (
@@ -18,9 +15,6 @@ export const InputFormSelect = ({
1815 value = { value }
1916 onChange = { onChange }
2017 placeholder = { placeholder }
21- selectedOptions = { selectedOptions }
22- isDisabled = { isDisabled }
23- isClearable = { isClearable }
2418 data-test-subj = { dataTestSubj }
2519 />
2620 ) ;
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ export interface IInputFormType {
77 isInvalid ?: boolean ;
88 options : any ;
99 setInputRef : ( reference : any ) => void ;
10+ placeholder : string ;
11+ dataTestSubj : string ;
1012}
1113
1214export interface IInputForm {
You can’t perform that action at this time.
0 commit comments