This is an automated email from the ASF dual-hosted git repository.

yongjiezhao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 352656a  Fix issue #15335 (#15339)
352656a is described below

commit 352656a398da99b8925a2341bfccc1ab4470c1ae
Author: Ajay M <[email protected]>
AuthorDate: Wed Jun 23 22:09:15 2021 -0400

    Fix issue #15335 (#15339)
---
 .../FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx
 
b/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx
index 4d08e84..f99c579 100644
--- 
a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx
+++ 
b/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx
@@ -447,7 +447,7 @@ const AdhocFilterEditPopoverSimpleTabContent: 
React.FC<Props> = props => {
           name="filter-value"
           ref={ref => {
             if (ref && shouldFocusComparator) {
-              ref.blur();
+              ref.focus();
             }
           }}
           onChange={onInputComparatorChange}

Reply via email to