Fix Typecript 4.0 error

Change-Id: I97a54fd2506fc14dbc8bc283333e6e82a235b874
diff --git a/polygerrit-ui/app/elements/diff/gr-comment-api/gr-comment-api.ts b/polygerrit-ui/app/elements/diff/gr-comment-api/gr-comment-api.ts
index d5f1420..8b47b5f 100644
--- a/polygerrit-ui/app/elements/diff/gr-comment-api/gr-comment-api.ts
+++ b/polygerrit-ui/app/elements/diff/gr-comment-api/gr-comment-api.ts
@@ -553,7 +553,8 @@
       ([comments, robotComments, drafts, portedComments]) => {
         this._changeComments = new ChangeComments(
           comments,
-          robotComments,
+          // TS 4.0.5 fails without 'as'
+          robotComments as PathToRobotCommentsInfoMap | undefined,
           drafts,
           portedComments
         );