Fix joining group from search

This commit is contained in:
Natsumi
2025-11-25 17:27:42 +11:00
parent 20a2c244d9
commit c6f1615a80

View File

@@ -658,8 +658,7 @@
.then((args) => {
const map = new Map();
for (const json of args.json) {
const ref = applyGroup(json);
map.set(ref.id, ref);
map.set(json.id, json);
}
searchGroupResults.value = Array.from(map.values());
return args;