feat(api): fixed description default value
This commit is contained in:
parent
1c671631e7
commit
c715a6084e
1 changed files with 1 additions and 1 deletions
|
|
@ -888,7 +888,7 @@ class SavedSearchSchema(FunnelSchema):
|
|||
|
||||
class CreateDashboardSchema(BaseModel):
|
||||
name: str = Field(..., min_length=1)
|
||||
description: str = Field(default=None)
|
||||
description: str = Field(default='')
|
||||
is_public: bool = Field(default=False)
|
||||
is_pinned: bool = Field(default=False)
|
||||
metrics: Optional[List[int]] = Field(default=[])
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue