From 97cf386f9675700fb68bf5bc96620480e3fe711c Mon Sep 17 00:00:00 2001 From: Julio Ruiz Date: Thu, 21 May 2026 08:27:09 -0500 Subject: [PATCH] Fixing non working search results in conferences --- app/pages/conferencias-typensense.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/pages/conferencias-typensense.vue b/app/pages/conferencias-typensense.vue index 64effea..c9fa94d 100644 --- a/app/pages/conferencias-typensense.vue +++ b/app/pages/conferencias-typensense.vue @@ -254,9 +254,11 @@ async function runSearch(q: string, page = 1, append = false) { if (seq !== searchSeq) return const res = (multi?.results?.[0] ?? {}) as TypesenseSearchResponse - const rawGroups = res?.grouped_hits ?? [] + const rawGroups = res?.groupedHits ?? [] + + console.log('Raw groups', rawGroups) const newGroups: SearchGroup[] = rawGroups.map(g => ({ - docId: g.group_key[0]!, + docId: g.groupKey[0]!, firstHit: g.hits[0]!, allHits: g.hits }))