Skip to content

Commit

Permalink
fix: Hot fix for null auto-assign field in activity flow (M2-7285) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmerlo authored Aug 7, 2024
1 parent 5117298 commit 09bfdd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/activity_flows/domain/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class FlowBase(BaseModel):
report_included_activity_name: str | None = None
report_included_item_name: str | None = None
is_hidden: bool | None = False
auto_assign: bool = True
auto_assign: bool | None = True

@validator("description")
def validate_description(cls, value):
Expand Down

0 comments on commit 09bfdd5

Please sign in to comment.