* 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
This commit is contained in:
Kraiem Taha Yassine 2024-07-08 17:28:11 +02:00 committed by GitHub
parent 54a10260eb
commit 4991df04e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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