Reactions not working on child notes in detailed view

This commit is contained in:
Marie 2024-02-22 21:16:08 +00:00 committed by Amelia Yukii
parent f26eb25a78
commit b0bc69aac8
2 changed files with 4 additions and 4 deletions

View File

@ -141,7 +141,7 @@ const replies = ref<Misskey.entities.Note[]>([]);
const isRenote = (
props.note.renote != null &&
props.note.text == null &&
props.note.fileIds.length === 0 &&
props.note.fileIds && props.note.fileIds.length === 0 &&
props.note.poll == null
);
@ -211,7 +211,7 @@ function react(viaKeyboard = false): void {
}
} else {
blur();
reactionPicker.show(reactButton.value, reaction => {
reactionPicker.show(reactButton.value ?? null, props.note, reaction => {
misskeyApi('notes/reactions/create', {
noteId: props.note.id,
reaction: reaction,

View File

@ -155,7 +155,7 @@ const replies = ref<Misskey.entities.Note[]>([]);
const isRenote = (
props.note.renote != null &&
props.note.text == null &&
props.note.fileIds.length === 0 &&
props.note.fileIds && props.note.fileIds.length === 0 &&
props.note.poll == null
);
@ -225,7 +225,7 @@ function react(viaKeyboard = false): void {
}
} else {
blur();
reactionPicker.show(reactButton.value, reaction => {
reactionPicker.show(reactButton.value ?? null, props.note, reaction => {
misskeyApi('notes/reactions/create', {
noteId: props.note.id,
reaction: reaction,