Merge pull request #13845 from overleaf/ii-rp-incorrect-date

[web] Fix date issues in review panel

GitOrigin-RevId: 447185cc97aae5a2e6d8944be578fa103b39325b
This commit is contained in:
ilkin-overleaf 2023-07-12 17:15:06 +03:00 committed by Copybot
parent 680d5e0a6f
commit 66f540c6eb
4 changed files with 5 additions and 5 deletions

View file

@ -147,7 +147,7 @@ function AggregateChangeEntry({
)}
</div>
<div className="rp-entry-metadata">
{formatTime(entry.metadata.ts, 'MMM d, y h:mm a')}
{formatTime(entry.metadata.ts, 'MMM D, Y h:mm A')}
&nbsp;&bull;&nbsp;
{user && (
<span

View file

@ -144,7 +144,7 @@ function ChangeEntry({
</span>
</div>
<div className="rp-entry-metadata">
{formatTime(entry.metadata.ts, 'MMM d, y h:mm a')}
{formatTime(entry.metadata.ts, 'MMM D, Y h:mm A')}
&nbsp;&bull;&nbsp;
{user && (
<span

View file

@ -88,7 +88,7 @@ function Comment({ thread, threadId, comment }: CommentProps) {
</p>
{!editing && (
<div className="rp-entry-metadata">
{!deleting && formatTime(comment.timestamp, 'MMM d, y h:mm a')}
{!deleting && formatTime(comment.timestamp, 'MMM D, Y h:mm A')}
{comment.user.isSelf && !deleting && (
<span className="rp-comment-actions">
&nbsp;&bull;&nbsp;

View file

@ -88,7 +88,7 @@ function ResolvedCommentEntry({
</Linkify>
</p>
<div className="rp-entry-metadata">
{formatTime(comment.timestamp, 'MMM d, y h:mm a')}
{formatTime(comment.timestamp, 'MMM D, Y h:mm A')}
</div>
</div>
)
@ -104,7 +104,7 @@ function ResolvedCommentEntry({
{t('mark_as_resolved')}.
</p>
<div className="rp-entry-metadata">
{formatTime(thread.resolved_at, 'MMM d, y h:mm a')}
{formatTime(thread.resolved_at, 'MMM D, Y h:mm A')}
</div>
</div>
</div>