From 14e4bb6600f4556456aa0cf03ca01bdecbde992f Mon Sep 17 00:00:00 2001 From: Kraiem Taha Yassine Date: Fri, 27 Oct 2023 14:38:45 +0200 Subject: [PATCH] Api v1.15.0 (#1581) * fix(chalice): fixed assist search --- api/chalicelib/core/assist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/chalicelib/core/assist.py b/api/chalicelib/core/assist.py index eea02759f..1644a12bd 100644 --- a/api/chalicelib/core/assist.py +++ b/api/chalicelib/core/assist.py @@ -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)