Fixed #2349 - Numpad comma separator support for Chips

pull/2360/head
Tuğçe Küçükoğlu 2022-03-28 10:56:10 +03:00
parent 472c1e28be
commit 7afd802950
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);
}
}