Replace ChangeNum with NumericChangeId

Change-Id: Ie9ff6cc038568c0e518725025404a1920367b3c4
diff --git a/polygerrit-ui/app/elements/shared/gr-comment/gr-comment.ts b/polygerrit-ui/app/elements/shared/gr-comment/gr-comment.ts
index f1af68d..8bd1f69 100644
--- a/polygerrit-ui/app/elements/shared/gr-comment/gr-comment.ts
+++ b/polygerrit-ui/app/elements/shared/gr-comment/gr-comment.ts
@@ -49,7 +49,7 @@
   CommentInfo,
   ConfigInfo,
   AccountDetailInfo,
-  ChangeNum,
+  NumericChangeId,
 } from '../../../types/common';
 import {GrButton} from '../gr-button/gr-button';
 import {GrConfirmDeleteCommentDialog} from '../gr-confirm-delete-comment-dialog/gr-confirm-delete-comment-dialog';
@@ -171,7 +171,7 @@
    */
 
   @property({type: Number})
-  changeNum?: ChangeNum;
+  changeNum?: NumericChangeId;
 
   @property({type: Object, notify: true, observer: '_commentChanged'})
   comment?: Comment | RobotComment;