feat(chalice): fixed recordings response recursion error
This commit is contained in:
parent
eb9fc2c4cb
commit
bb114c6549
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ def search_records(project_id: int, data: schemas_ee.AssistRecordSearchPayloadSc
|
|||
results = {"total": rows[0]["count"]}
|
||||
for r in rows:
|
||||
r.pop("count")
|
||||
results["records"] = results
|
||||
results["records"] = rows
|
||||
|
||||
return results
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue