commit | 7ee8a8389f66b73fe04a69058af876f060ecf550 | [log] [tgz] |
---|---|---|
author | Dmitrii Filippov <dmfilippov@google.com> | Wed Dec 09 12:11:26 2020 +0100 |
committer | Dmitrii Filippov <dmfilippov@google.com> | Wed Dec 09 12:11:26 2020 +0100 |
tree | 3af0bad132799963c0f7e7f2dd9b7cc029c752ba | |
parent | 4b02a342ecb4f20ab0204e2998987d0b2250a788 [diff] |
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 );