Skip to content

Commit

Permalink
fix(keycodes): incorrect key code for nine
Browse files Browse the repository at this point in the history
* Fixes that the `@angular/cdk/keycodes` package uses a wrong key code for nine.

Fixes angular#9567
  • Loading branch information
devversion committed Jan 24, 2018
1 parent 83ca9a8 commit 61a54a3
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 61a54a3

Please sign in to comment.