diff --git a/components/account/AccountInfo.vue b/components/account/AccountInfo.vue
index ab229e8a..f2118b5f 100644
--- a/components/account/AccountInfo.vue
+++ b/components/account/AccountInfo.vue
@@ -19,6 +19,7 @@ const { link = true } = defineProps<{
@{{ account.acct }}
+
diff --git a/components/account/AccountInlineInfo.vue b/components/account/AccountInlineInfo.vue
index 5dd91468..bd37117d 100644
--- a/components/account/AccountInlineInfo.vue
+++ b/components/account/AccountInlineInfo.vue
@@ -7,7 +7,7 @@ defineProps<{
-
+
diff --git a/components/status/StatusCard.vue b/components/status/StatusCard.vue
index 2f413b37..fc7d79c1 100644
--- a/components/status/StatusCard.vue
+++ b/components/status/StatusCard.vue
@@ -67,16 +67,19 @@ const timeago = useTimeAgo(() => status.createdAt, {
-
-
- {{ timeago }}
-
+
+
+
+ {{ timeago }}
+
+
+
formatter.format(new Date(status.createdAt)))
-
+
+
+import type { Status } from 'masto'
+
+const { status } = defineProps<{
+ status: Status
+}>()
+
+const replyingTo = asyncComputed(async () => {
+ if (status.inReplyToAccountId)
+ return await masto.accounts.fetch(status.inReplyToAccountId)
+ return null
+})
+
+
+
+
+
+
+