From 0aa9e41e5914210c679d037588805682a3cedc2e Mon Sep 17 00:00:00 2001 From: Paschalis Economou Date: Mon, 1 Jul 2024 13:10:29 +0200 Subject: [PATCH] make sure editable dropdown opens when user types --- components/lib/dropdown/Dropdown.js | 1 + 1 file changed, 1 insertion(+) diff --git a/components/lib/dropdown/Dropdown.js b/components/lib/dropdown/Dropdown.js index 4c0bee669b..c3a6387d18 100644 --- a/components/lib/dropdown/Dropdown.js +++ b/components/lib/dropdown/Dropdown.js @@ -654,6 +654,7 @@ export const Dropdown = React.memo( }; const onEditableInputChange = (event) => { + !overlayVisibleState && show(); let searchIndex = null; if (event.target.value && visibleOptions) {