From 4991df04e7b7e44d350abd0a1bc886bf968a3b70 Mon Sep 17 00:00:00 2001 From: Kraiem Taha Yassine Date: Mon, 8 Jul 2024 17:28:11 +0200 Subject: [PATCH] Dev (#2371) * refactor(chalice): upgraded dependencies * refactor(chalice): upgraded dependencies feat(chalice): support heatmaps * feat(chalice): support table-of-browsers showing user-count * feat(chalice): support table-of-devices showing user-count * feat(chalice): support table-of-URLs showing user-count * fix(chalice): fixed Math-operators validation refactor(chalice): search for sessions that have events for heatmaps * refactor(chalice): search for sessions that have at least 1 location event for heatmaps * fix(chalice): fixed get chart with missing attributes in the payload --- api/schemas/schemas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/schemas/schemas.py b/api/schemas/schemas.py index a5e8d6ef0..df34a6dc3 100644 --- a/api/schemas/schemas.py +++ b/api/schemas/schemas.py @@ -1314,7 +1314,7 @@ class CardPathAnalysisSeriesSchema(CardSeriesSchema): if values.get("filter") is None and values.get("startTimestamp") and values.get("endTimestamp"): values["filter"] = PathAnalysisSchema(startTimestamp=values["startTimestamp"], endTimestamp=values["endTimestamp"], - density=values["density"]) + density=values.get("density", 4)) return values