Fix joining group from search

This commit is contained in:
Natsumi
2025-11-25 17:27:42 +11:00
parent 20a2c244d9
commit c6f1615a80
+1 -2
View File
@@ -658,8 +658,7 @@
.then((args) => { .then((args) => {
const map = new Map(); const map = new Map();
for (const json of args.json) { for (const json of args.json) {
const ref = applyGroup(json); map.set(json.id, json);
map.set(ref.id, ref);
} }
searchGroupResults.value = Array.from(map.values()); searchGroupResults.value = Array.from(map.values());
return args; return args;