Skip to content

Commit

Permalink
[Search] Fix multiple radio buttons conflicting in connector config (#…
Browse files Browse the repository at this point in the history
…176795)

## Summary

This fixes an issue where multiple radio groups in a single connector
config would conflict leading to UI glitches.
  • Loading branch information
sphilipse authored Feb 13, 2024
1 parent 466a05a commit 8477b6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export const ConnectorConfigurationField: React.FC<ConnectorConfigurationFieldPr
<EuiRadioGroup
disabled={isLoading}
idSelected={ensureStringType(value)}
name="radio group"
name={key}
options={options.map((option) => ({ id: option.value, label: option.label }))}
onChange={(id) => {
validateAndSetConfigValue(id);
Expand Down

0 comments on commit 8477b6b

Please sign in to comment.