We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89f457c commit e81c9b0Copy full SHA for e81c9b0
invokeai/app/services/workflow_records/workflow_records_common.py
@@ -98,7 +98,9 @@ class WorkflowRecordDTOBase(BaseModel):
98
name: str = Field(description="The name of the workflow.")
99
created_at: Union[datetime.datetime, str] = Field(description="The created timestamp of the workflow.")
100
updated_at: Union[datetime.datetime, str] = Field(description="The updated timestamp of the workflow.")
101
- opened_at: Optional[Union[datetime.datetime, str]] = Field(description="The opened timestamp of the workflow.")
+ opened_at: Optional[Union[datetime.datetime, str]] = Field(
102
+ default=None, description="The opened timestamp of the workflow."
103
+ )
104
105
106
class WorkflowRecordDTO(WorkflowRecordDTOBase):
0 commit comments