Skip to content

Commit

Permalink
Merge branch '4.9.0' into fix/6693-cannot-perform-a-react-state-updat…
Browse files Browse the repository at this point in the history
…e-on-an-unmounted-component
  • Loading branch information
asteriscos authored May 30, 2024
2 parents cbf7c78 + 33fddd7 commit c47fda0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 0 additions & 6 deletions plugins/main/public/components/common/form/input_select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ export const InputFormSelect = ({
value,
onChange,
placeholder,
selectedOptions,
isDisabled,
isClearable,
dataTestSubj,
}: IInputFormType) => {
return (
Expand All @@ -18,9 +15,6 @@ export const InputFormSelect = ({
value={value}
onChange={onChange}
placeholder={placeholder}
selectedOptions={selectedOptions}
isDisabled={isDisabled}
isClearable={isClearable}
data-test-subj={dataTestSubj}
/>
);
Expand Down
2 changes: 2 additions & 0 deletions plugins/main/public/components/common/form/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ export interface IInputFormType {
isInvalid?: boolean;
options: any;
setInputRef: (reference: any) => void;
placeholder: string;
dataTestSubj: string;
}

export interface IInputForm {
Expand Down

0 comments on commit c47fda0

Please sign in to comment.