diff --git a/packages/client/src/pages/note.vue b/packages/client/src/pages/note.vue
index dbc2f2aa9..cee0bf854 100644
--- a/packages/client/src/pages/note.vue
+++ b/packages/client/src/pages/note.vue
@@ -26,6 +26,7 @@
v-if="!showNext && hasNext"
class="load next"
@click="showNext = true"
+ v-tooltip="i18n.ts.loadMore"
>
@@ -74,6 +75,7 @@
v-if="!showPrev && hasPrev"
class="load prev"
@click="showPrev = true"
+ v-tooltip="i18n.ts.loadMore"
>
@@ -193,8 +195,8 @@ definePageMetadata(
computed(() =>
note
? {
- title: i18n.ts.note,
- subtitle: new Date(note.createdAt).toLocaleString(),
+ title: note.user.name,
+ subtitle: `@${note.user.username}@${note.user.host}`,
avatar: note.user,
path: `/notes/${note.id}`,
share: {