diff --git a/ui/app/components/app/dropdowns/simple-dropdown.js b/ui/app/components/app/dropdowns/simple-dropdown.js index 081674397..96c31ac82 100644 --- a/ui/app/components/app/dropdowns/simple-dropdown.js +++ b/ui/app/components/app/dropdowns/simple-dropdown.js @@ -53,7 +53,8 @@ class SimpleDropdown extends Component { 'simple-dropdown__option--selected': option.value === selectedOption, })} key={option.value} - onClick={() => { + onClick={(event) => { + event.stopPropagation() if (option.value !== selectedOption) { onSelect(option.value) }