Skip to content

Commit

Permalink
Fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
criamico committed May 18, 2022
1 parent f442fa9 commit 40c45d0
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ export const AgentUpgradeAgentModal: React.FunctionComponent<Props> = ({
singleSelection={{ asPlainText: true }}
options={fallbackVersions}
selectedOptions={selectedVersion}
onChange={(selectedVersion: Array<EuiComboBoxOptionOption<string>>) => {
setSelectedVersion(selectedVersion);
onChange={(selected: Array<EuiComboBoxOptionOption<string>>) => {
setSelectedVersion(selected);
}}
/>
</EuiFormRow>
Expand Down Expand Up @@ -240,8 +240,8 @@ export const AgentUpgradeAgentModal: React.FunctionComponent<Props> = ({
singleSelection={{ asPlainText: true }}
options={maintainanceOptions}
selectedOptions={selectedMantainanceWindow}
onChange={(selectedMantainanceWindow: Array<EuiComboBoxOptionOption<string>>) => {
setSelectedMantainanceWindow(selectedMantainanceWindow);
onChange={(selected: Array<EuiComboBoxOptionOption<string>>) => {
setSelectedMantainanceWindow(selected);
}}
/>
</EuiFormRow>
Expand Down

0 comments on commit 40c45d0

Please sign in to comment.