Api v1.15.0 (#1581)

* fix(chalice): fixed assist search
This commit is contained in:
Kraiem Taha Yassine 2023-10-27 14:38:45 +02:00 committed by GitHub
parent 437fe9533b
commit 14e4bb6600
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,7 @@ def get_live_sessions_ws(project_id, body: schemas.LiveSessionsSearchPayloadSche
data["filter"][f.source] = {"values": f.value, "operator": f.operator}
else:
data["filter"][f.type.value] = {"values": f.value, "operator": f.operator}
data["filter"][f.type] = {"values": f.value, "operator": f.operator}
return __get_live_sessions_ws(project_id=project_id, data=data)