fix bulk expand mute
This commit is contained in:
parent
40695c7925
commit
4847257011
11 changed files with 201 additions and 73 deletions
|
|
@ -13,6 +13,7 @@ Detailed view of a note in the Sharkey style. Used when opening a note onto its
|
|||
:note="appearNote"
|
||||
:class="$style.root"
|
||||
:tabindex="isDeleted ? '-1' : '0'"
|
||||
@expandMute="n => emit('expandMute', n)"
|
||||
>
|
||||
<div v-if="appearNote.reply && appearNote.reply.replyId && !conversationLoaded" style="padding: 16px">
|
||||
<MkButton style="margin: 0 auto;" primary rounded @click="loadConversation">{{ i18n.ts.loadConversation }}</MkButton>
|
||||
|
|
@ -297,6 +298,10 @@ const props = withDefaults(defineProps<{
|
|||
initialTab: 'replies',
|
||||
});
|
||||
|
||||
const emit = defineEmits<{
|
||||
(ev: 'expandMute', note: Misskey.entities.Note): void;
|
||||
}>();
|
||||
|
||||
const inChannel = inject('inChannel', null);
|
||||
|
||||
const note = ref(deepClone(props.note));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue