From 2ab75f33f4703b8c901a811443606c5a9cb220de Mon Sep 17 00:00:00 2001 From: C Dharmateja Date: Wed, 1 Dec 2021 18:37:27 +0530 Subject: [PATCH] fix: click on input down arrow --- src/shared/components/InputSelect/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/InputSelect/index.jsx b/src/shared/components/InputSelect/index.jsx index a91c088093..dca83843f6 100644 --- a/src/shared/components/InputSelect/index.jsx +++ b/src/shared/components/InputSelect/index.jsx @@ -111,7 +111,7 @@ export default class InputSelect extends Component { let i = 0; let node = e.target; const REG = new RegExp(_id); - while (node && i < 5) { + while (node && i < 20) { if (REG.test(node.className)) { return true; }