feat(api): changed default value for source search

This commit is contained in:
Taha Yassine Kraiem 2022-04-15 16:27:30 +02:00
parent 11f368ed7a
commit 9f23d12e04

View file

@ -588,7 +588,7 @@ class SessionSearchFilterSchema(__MixedSearchFilter):
Optional[List[Union[IssueType, PlatformType, int, str]]]] = Field(...)
type: FilterType = Field(...)
operator: Union[SearchEventOperator, MathOperator] = Field(...)
source: Optional[Union[ErrorSource, str]] = Field(default=ErrorSource.js_exception)
source: Optional[Union[ErrorSource, str]] = Field(default=None)
@root_validator
def filter_validator(cls, values):