Skip to content

Commit 5346e4d

Browse files
authored
fix: click on input down arrow (#5895)
1 parent 55c3bb5 commit 5346e4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/components/InputSelect/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export default class InputSelect extends Component {
111111
let i = 0;
112112
let node = e.target;
113113
const REG = new RegExp(_id);
114-
while (node && i < 5) {
114+
while (node && i < 20) {
115115
if (REG.test(node.className)) {
116116
return true;
117117
}

0 commit comments

Comments
 (0)