fix bug
This commit is contained in:
parent
b47b25be8f
commit
002fa38db7
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue