mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #4045 - Treetable: InputText in body Slot does not allow space character
This commit is contained in:
parent
d4239e68af
commit
b389f06a57
1 changed files with 4 additions and 1 deletions
|
@ -186,7 +186,10 @@ export default {
|
|||
|
||||
case 'Enter':
|
||||
case 'Space':
|
||||
this.onEnterKey(event, item);
|
||||
if (!DomHandler.isClickable(event.target)) {
|
||||
this.onEnterKey(event, item);
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case 'Tab':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue