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

* feat(chalice): autocomplete return top 10 with stats

* fix(chalice): fixed autocomplete top 10 meta-filters

* fix(chalice): fixed schemas field validator
This commit is contained in:
Kraiem Taha Yassine 2024-08-13 11:48:27 +02:00 committed by GitHub
parent b9fc397e72
commit 4b8af90b18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -793,7 +793,8 @@ class SessionsSearchPayloadSchema(_TimedSchema, _PaginatedSchema):
return values
@field_validator("filters", mode="after")
def merge_identical_filters(self, values):
@classmethod
def merge_identical_filters(cls, values):
# ignore 'issue' type as it could be used for step-filters and tab-filters at the same time
i = 0
while i < len(values):