feat: add OpenSearch highlight snippets to search results
All checks were successful
CI / build (push) Successful in 1m23s
CI / cleanup-branch (push) Has been skipped
CI / docker (push) Successful in 54s
CI / deploy (push) Successful in 39s
CI / deploy-feature (push) Has been skipped

- Add highlight field to ExecutionSummary record
- Request highlight fragments from OpenSearch when full-text search is active
- Pass matchContext to command palette for display

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-25 09:29:07 +01:00
parent b32c97c02b
commit d9c8816647
3 changed files with 30 additions and 2 deletions

View File

@@ -137,6 +137,7 @@ function LayoutContent() {
meta: `${e.routeId} · ${e.applicationName ?? ''} · ${formatDuration(e.durationMs)}`,
path: `/exchanges/${e.executionId}`,
serverFiltered: true,
matchContext: e.highlight ?? undefined,
}));
return [...catalogData, ...exchangeItems];
}, [catalogData, exchangeResults]);