File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
components/dash-core-components/src/fragments Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ const Dropdown = (props: DropdownProps) => {
289289 }
290290
291291 const focusableElements = e . currentTarget . querySelectorAll (
292- 'input[type="search"], input[type="checkbox"] :not([disabled])'
292+ 'input[type="search"], input:not([disabled])'
293293 ) as NodeListOf < HTMLElement > ;
294294
295295 // Don't interfere with the event if there aren't any options that the user can interact with
@@ -505,6 +505,7 @@ const Dropdown = (props: DropdownProps) => {
505505 options = { displayOptions }
506506 selected = { sanitizedValues }
507507 onSelectionChange = { updateSelection }
508+ inputType = { multi ? 'checkbox' : 'radio' }
508509 className = "dash-dropdown-options"
509510 optionClassName = "dash-dropdown-option"
510511 optionStyle = { {
You can’t perform that action at this time.
0 commit comments