Skip to content

Commit 3434873

Browse files
FIX Repalce mouseDown with keyDown event on treedropdown option button (#1732)
1 parent 3bf5a60 commit 3434873

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/dist/js/bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/src/components/TreeDropdownField/TreeDropdownField.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ class TreeDropdownField extends Component {
604604
type="button"
605605
className="treedropdownfield__option-button fill-width"
606606
onClick={handleNavigate}
607-
onMouseDown={handleNavigate}
607+
onKeyDown={(event) => this.handleKeyDown(event)}
608608
onTouchStart={handleNavigate}
609609
>
610610
<span className="treedropdownfield__option-count-icon font-icon-right-open-big" />

0 commit comments

Comments
 (0)