diff --git a/src/views/Search/Search.vue b/src/views/Search/Search.vue index 3b85a368..6dd968be 100644 --- a/src/views/Search/Search.vue +++ b/src/views/Search/Search.vue @@ -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;