From 894fb725bc2191ad27c2353ae0c50674ba81e012 Mon Sep 17 00:00:00 2001 From: navedqb <109583873+navedqb@users.noreply.github.com> Date: Thu, 18 Jan 2024 12:25:44 +0530 Subject: [PATCH] fix numpad enter key issue in chips --- src/app/components/chips/chips.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/components/chips/chips.ts b/src/app/components/chips/chips.ts index 407fa0a2cc3..4e099b84f08 100755 --- a/src/app/components/chips/chips.ts +++ b/src/app/components/chips/chips.ts @@ -509,6 +509,7 @@ export class Chips implements AfterContentInit, ControlValueAccessor { break; case 'Enter': + case 'NumpadEnter': if (inputValue && inputValue.trim().length && !this.isMaxedOut) { this.addItem(event, inputValue, true); }