diff --git a/packages/plugin-ext/src/common/plugin-api-rpc-model.ts b/packages/plugin-ext/src/common/plugin-api-rpc-model.ts index 658c34d950551..efd8f740ac913 100644 --- a/packages/plugin-ext/src/common/plugin-api-rpc-model.ts +++ b/packages/plugin-ext/src/common/plugin-api-rpc-model.ts @@ -660,6 +660,8 @@ export interface Comment { readonly contextValue?: string; readonly label?: string; readonly mode?: CommentMode; + /** Timestamp serialized as ISO date string via Date.prototype.toISOString */ + readonly timeStamp?: string; } export enum CommentThreadCollapsibleState { diff --git a/packages/plugin-ext/src/main/browser/comments/comment-thread-widget.tsx b/packages/plugin-ext/src/main/browser/comments/comment-thread-widget.tsx index c8e205dd4283a..212ca1a44cf48 100644 --- a/packages/plugin-ext/src/main/browser/comments/comment-thread-widget.tsx +++ b/packages/plugin-ext/src/main/browser/comments/comment-thread-widget.tsx @@ -479,6 +479,7 @@ export class ReviewComment