From 7afd80295088a130ca44b076d831c6c8f572a738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Mon, 28 Mar 2022 10:56:10 +0300 Subject: [PATCH] Fixed #2349 - Numpad comma separator support for Chips --- src/components/chips/Chips.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/chips/Chips.vue b/src/components/chips/Chips.vue index 8a43794d2..fa165ca88 100755 --- a/src/components/chips/Chips.vue +++ b/src/components/chips/Chips.vue @@ -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); } }