Skip to content

Commit 637e1b6

Browse files
devversionjelbourn
authored andcommitted
fix(keycodes): incorrect key code for nine (#9568)
`@angular/cdk/keycodes` package used the wrong key code for nine. Fixes #9567
1 parent 83b369e commit 637e1b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cdk/keycodes/keycodes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ export const DELETE = 46;
2323
export const A = 65;
2424
export const Z = 90;
2525
export const ZERO = 48;
26-
export const NINE = 91;
26+
export const NINE = 57;
2727
export const COMMA = 188;

0 commit comments

Comments
 (0)