Merge pull request #2360 from tugcekucukoglu/chips

Fixed #2349 - Numpad comma separator support for Chips
pull/2362/head
Tuğçe Küçükoğlu 2022-03-28 10:56:48 +03:00 committed by GitHub
commit dc7ea890e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ export default {
default:
if (this.separator) {
if (this.separator === ',' && event.which === 188) {
if (this.separator === ',' && (event.which === 188 || event.which === 110)) {
this.addItem(event, inputValue, true);
}
}