Fix 'noteOf' text in post title
This commit is contained in:
parent
2ce76a7097
commit
7b86c7087d
|
@ -162,12 +162,12 @@ definePageMetadata(
|
|||
computed(() =>
|
||||
note
|
||||
? {
|
||||
title: i18n.t("noteOf", { user: note.user.name }),
|
||||
title: i18n.t("noteOf", { user: note.user.name || note.user.username }),
|
||||
subtitle: new Date(note.createdAt).toLocaleString(),
|
||||
avatar: note.user,
|
||||
path: `/notes/${note.id}`,
|
||||
share: {
|
||||
title: i18n.t("noteOf", { user: note.user.name }),
|
||||
title: i18n.t("noteOf", { user: note.user.name || note.user.username }),
|
||||
text: note.text,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue