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>
<div className="rp-entry-metadata"> <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; &nbsp;&bull;&nbsp;
{user && ( {user && (
<span <span

View file

@ -144,7 +144,7 @@ function ChangeEntry({
</span> </span>
</div> </div>
<div className="rp-entry-metadata"> <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; &nbsp;&bull;&nbsp;
{user && ( {user && (
<span <span

View file

@ -88,7 +88,7 @@ function Comment({ thread, threadId, comment }: CommentProps) {
</p> </p>
{!editing && ( {!editing && (
<div className="rp-entry-metadata"> <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 && ( {comment.user.isSelf && !deleting && (
<span className="rp-comment-actions"> <span className="rp-comment-actions">
&nbsp;&bull;&nbsp; &nbsp;&bull;&nbsp;

View file

@ -88,7 +88,7 @@ function ResolvedCommentEntry({
</Linkify> </Linkify>
</p> </p>
<div className="rp-entry-metadata"> <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>
</div> </div>
) )
@ -104,7 +104,7 @@ function ResolvedCommentEntry({
{t('mark_as_resolved')}. {t('mark_as_resolved')}.
</p> </p>
<div className="rp-entry-metadata"> <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> </div>
</div> </div>