Dev (#2486)
* 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:
parent
b9fc397e72
commit
4b8af90b18
1 changed files with 2 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue