mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
Fixed #149 - Editable Dropdown loses focus
This commit is contained in:
parent
e590e10258
commit
2ed93798ae
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ export default {
|
|||
return;
|
||||
}
|
||||
|
||||
if (DomHandler.hasClass(event.target, 'p-dropdown-clear-icon')) {
|
||||
if (DomHandler.hasClass(event.target, 'p-dropdown-clear-icon') || event.target.tagName === 'INPUT') {
|
||||
return;
|
||||
}
|
||||
else if (!this.$refs.overlay || !this.$refs.overlay.contains(event.target)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue