diff --git a/components/social-elements/notes/header.vue b/components/social-elements/notes/header.vue index dc4d7d8..83f3ba1 100644 --- a/components/social-elements/notes/header.vue +++ b/components/social-elements/notes/header.vue @@ -9,7 +9,7 @@
- {{ note?.account.display_name }} + @@ -32,7 +32,7 @@
- {{ note?.account.display_name }} + , settings: MaybeRef, ) => { - const displayName = computed(() => toValue(account)?.display_name ?? ""); + const displayName = computed( + () => + toValue(account)?.display_name ?? toValue(account)?.username ?? "", + ); const note = computed(() => toValue(account)?.note ?? ""); const fields = computed(() => toValue(account)?.fields ?? []); const emojis = computed(() => toValue(account)?.emojis ?? []);