RegularToot: fix time display problem
This commit is contained in:
parent
a50b57639c
commit
a7d5c40a39
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ function TootAuthorGroup(props: { status: mastodon.v1.Status; now: Date }) {
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<time datetime={toot().createdAt}>
|
<time datetime={toot().createdAt}>
|
||||||
{formatRelative(props.now, toot().createdAt)}
|
{formatRelative(toot().createdAt, props.now)}
|
||||||
</time>
|
</time>
|
||||||
<span>
|
<span>
|
||||||
@{toot().account.username}@{new URL(toot().account.url).hostname}
|
@{toot().account.username}@{new URL(toot().account.url).hostname}
|
||||||
|
|
Loading…
Reference in a new issue