]> source.dussan.org Git - vaadin-framework.git/commit
Fixing issue with Vaadin 7 combobox when typing and tabing out fast (#12033)
authorTatu Lund <tatu@vaadin.com>
Wed, 17 Jun 2020 08:11:07 +0000 (11:11 +0300)
committerGitHub <noreply@github.com>
Wed, 17 Jun 2020 08:11:07 +0000 (11:11 +0300)
commit63434f9939968c9c7629b03b39016575dcf813c4
tree9d9475179d59928192e28f65845aa8b8b57f7b0e
parente03a6fcda6647fe53b1353e50ba2e0910aa4744f
Fixing issue with Vaadin 7 combobox when typing and tabing out fast (#12033)

ComboBox does not select or add a new value (in case allowed) if User enters the value by typing and TABs out fast. This bug was originally reported in https://github.com/vaadin/framework/issues/4276 and fixed by https://dev.vaadin.com/review/#/c/3564/6/client/src/com/vaadin/client/ui/VFilterSelect.java. However later some logic of VFilterSelect was refactored by patch https://github.com/vaadin/framework/commit/acb889336f80227d609b194e56ac6ae3ead0d338, which accidentally removed the fix. In this new PR I am re-applying the missing part of the logic (adopted to the new structure)

Fixes https://github.com/vaadin/framework/issues/6671
client/src/main/java/com/vaadin/client/ui/VFilterSelect.java