Skip to content
Snippets Groups Projects
Unverified Commit e5ac8640 authored by syuilo's avatar syuilo Committed by GitHub
Browse files

Update packages/frontend/src/pages/custom-emojis-manager.vue


Co-authored-by: default avatarAcid Chicken (硫酸鶏) <root@acid-chicken.com>
parent 76018b4a
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,7 @@ const selectAll = () => {
if (selectedEmojis.value.length > 0) {
selectedEmojis.value = [];
} else {
selectedEmojis.value = Array.from(emojisPaginationComponent.value.items.values()).map(item => item.id);
selectedEmojis.value = Array.from(emojisPaginationComponent.value.items.values(), item => item.id);
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment