Fixed #4045 - Treetable: InputText in body Slot does not allow space character

pull/4987/head
mertsincan 2023-12-19 15:27:49 +00:00
parent d4239e68af
commit b389f06a57
1 changed files with 4 additions and 1 deletions

View File

@ -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':