Merge pull request #2360 from tugcekucukoglu/chips
Fixed #2349 - Numpad comma separator support for Chipspull/2362/head
commit
dc7ea890e7
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue