Show the correct username
This commit is contained in:
parent
8bfe67c031
commit
1601676d55
|
@ -201,11 +201,27 @@
|
|||
<I18n :src="softMuteReasonI18nSrc(muted.what)" tag="small">
|
||||
<template #name>
|
||||
<MkA
|
||||
v-user-preview="appearNote.userId"
|
||||
v-user-preview="
|
||||
['renote', 'quote'].includes(muted.what)
|
||||
? note.userId
|
||||
: appearNote.userId
|
||||
"
|
||||
class="name"
|
||||
:to="userPage(appearNote.user)"
|
||||
:to="
|
||||
userPage(
|
||||
['renote', 'quote'].includes(muted.what)
|
||||
? note.user
|
||||
: appearNote.user
|
||||
)
|
||||
"
|
||||
>
|
||||
<MkUserName :user="appearNote.user" />
|
||||
<MkUserName
|
||||
:user="
|
||||
['renote', 'quote'].includes(muted.what)
|
||||
? note.user
|
||||
: appearNote.user
|
||||
"
|
||||
/>
|
||||
</MkA>
|
||||
</template>
|
||||
<template #reason>
|
||||
|
@ -301,9 +317,7 @@ let appearNote = $computed(() =>
|
|||
const isMyRenote = $i && $i.id === note.userId;
|
||||
const showContent = ref(false);
|
||||
const isDeleted = ref(false);
|
||||
const muted = ref(
|
||||
getWordSoftMute(appearNote, $i, defaultStore.state.mutedWords)
|
||||
);
|
||||
const muted = ref(getWordSoftMute(note, $i, defaultStore.state.mutedWords));
|
||||
const translation = ref(null);
|
||||
const translating = ref(false);
|
||||
const enableEmojiReactions = defaultStore.state.enableEmojiReactions;
|
||||
|
|
|
@ -42,11 +42,27 @@
|
|||
<I18n :src="softMuteReasonI18nSrc(muted.what)" tag="small">
|
||||
<template #name>
|
||||
<MkA
|
||||
v-user-preview="appearNote.userId"
|
||||
v-user-preview="
|
||||
['renote', 'quote'].includes(muted.what)
|
||||
? note.userId
|
||||
: appearNote.userId
|
||||
"
|
||||
class="name"
|
||||
:to="userPage(appearNote.user)"
|
||||
:to="
|
||||
userPage(
|
||||
['renote', 'quote'].includes(muted.what)
|
||||
? note.user
|
||||
: appearNote.user
|
||||
)
|
||||
"
|
||||
>
|
||||
<MkUserName :user="appearNote.user" />
|
||||
<MkUserName
|
||||
:user="
|
||||
['renote', 'quote'].includes(muted.what)
|
||||
? note.user
|
||||
: appearNote.user
|
||||
"
|
||||
/>
|
||||
</MkA>
|
||||
</template>
|
||||
<template #reason>
|
||||
|
@ -152,9 +168,7 @@ let appearNote = $computed(() =>
|
|||
const isMyRenote = $i && $i.id === note.userId;
|
||||
const showContent = ref(false);
|
||||
const isDeleted = ref(false);
|
||||
const muted = ref(
|
||||
getWordSoftMute(appearNote, $i, defaultStore.state.mutedWords)
|
||||
);
|
||||
const muted = ref(getWordSoftMute(note, $i, defaultStore.state.mutedWords));
|
||||
const translation = ref(null);
|
||||
const translating = ref(false);
|
||||
const urls = appearNote.text
|
||||
|
|
|
@ -166,11 +166,27 @@
|
|||
<I18n :src="softMuteReasonI18nSrc(muted.what)" tag="small">
|
||||
<template #name>
|
||||
<MkA
|
||||
v-user-preview="appearNote.userId"
|
||||
v-user-preview="
|
||||
['renote', 'quote'].includes(muted.what)
|
||||
? note.userId
|
||||
: appearNote.userId
|
||||
"
|
||||
class="name"
|
||||
:to="userPage(appearNote.user)"
|
||||
:to="
|
||||
userPage(
|
||||
['renote', 'quote'].includes(muted.what)
|
||||
? note.user
|
||||
: appearNote.user
|
||||
)
|
||||
"
|
||||
>
|
||||
<MkUserName :user="appearNote.user" />
|
||||
<MkUserName
|
||||
:user="
|
||||
['renote', 'quote'].includes(muted.what)
|
||||
? note.user
|
||||
: appearNote.user
|
||||
"
|
||||
/>
|
||||
</MkA>
|
||||
</template>
|
||||
<template #reason>
|
||||
|
@ -252,9 +268,7 @@ let appearNote = $computed(() =>
|
|||
isRenote ? (note.renote as misskey.entities.Note) : note
|
||||
);
|
||||
const isDeleted = ref(false);
|
||||
const muted = ref(
|
||||
getWordSoftMute(appearNote, $i, defaultStore.state.mutedWords)
|
||||
);
|
||||
const muted = ref(getWordSoftMute(note, $i, defaultStore.state.mutedWords));
|
||||
const translation = ref(null);
|
||||
const translating = ref(false);
|
||||
const replies: misskey.entities.Note[] =
|
||||
|
|
Loading…
Reference in New Issue