This commit is contained in:
samunohito 2023-12-12 10:40:57 +09:00
parent b47b25be8f
commit 002fa38db7
1 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@ async function copyFromEmojiDeckItems() {
return; return;
} }
reactionDeckItems.value = emojiDeckItems.value; reactionDeckItems.value = [...emojiDeckItems.value];
} }
async function copyFromReactionDeckItems() { async function copyFromReactionDeckItems() {
@ -191,7 +191,7 @@ async function copyFromReactionDeckItems() {
return; return;
} }
emojiDeckItems.value = reactionDeckItems.value; emojiDeckItems.value = [...reactionDeckItems.value];
} }
function remove(itemsRef: Ref<string[]>, reaction: string, ev: MouseEvent) { function remove(itemsRef: Ref<string[]>, reaction: string, ev: MouseEvent) {