Skip to content

Commit

Permalink
fix(keycodes): incorrect key code for nine (#9568)
Browse files Browse the repository at this point in the history
`@angular/cdk/keycodes` package used the wrong key code for nine.

Fixes #9567
  • Loading branch information
devversion authored and jelbourn committed Jan 29, 2018
1 parent b11523a commit b489559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cdk/keycodes/keycodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ export const DELETE = 46;
export const A = 65;
export const Z = 90;
export const ZERO = 48;
export const NINE = 91;
export const NINE = 57;
export const COMMA = 188;

0 comments on commit b489559

Please sign in to comment.