From 12a41fd5f0ea30f4c26901125f84e222b4ac7622 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 19 Jan 2026 05:16:48 +0000 Subject: [PATCH 1/2] Initial plan From 279a905c613ac2c55b8489f42b3e21ac13dc07f1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 19 Jan 2026 05:21:10 +0000 Subject: [PATCH 2/2] Fix reply time inconsistency by using spec.creationTime Co-authored-by: ruibaby <21301288+ruibaby@users.noreply.github.com> --- packages/comment-widget/src/reply-item.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/comment-widget/src/reply-item.ts b/packages/comment-widget/src/reply-item.ts index bedf6dc..261beae 100644 --- a/packages/comment-widget/src/reply-item.ts +++ b/packages/comment-widget/src/reply-item.ts @@ -119,7 +119,7 @@ export class ReplyItem extends LitElement { .userAvatar="${handleReplyAvatar(this.reply)}" .userDisplayName="${this.reply?.owner.displayName}" .content="${this.reply?.spec.content || ''}" - .creationTime="${this.reply?.metadata.creationTimestamp ?? undefined}" + .creationTime="${this.reply?.spec.creationTime}" .approved=${this.reply?.spec.approved} .breath=${this.isQuoteReplyHovered} .userWebsite=${this.reply?.spec.owner.annotations?.website}