Fix UI not displaying search results
All checks were successful
CI / build (push) Successful in 57s
CI / docker (push) Successful in 44s
CI / deploy (push) Successful in 25s

Backend returns { data: [...] } but UI was reading .results instead of .data.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-13 14:20:11 +01:00
parent fc2daddf54
commit 1dfe53abee
2 changed files with 2 additions and 2 deletions

View File

@@ -127,7 +127,7 @@ export interface SearchRequest {
}
export interface SearchResponse {
results: ExecutionSummary[];
data: ExecutionSummary[];
total: number;
offset: number;
limit: number;