Skip to content

Commit

Permalink
Merge pull request #17636 from dannon/fix-workflow-person-validation
Browse files Browse the repository at this point in the history
[24.0] Fix workflow person validation
  • Loading branch information
martenson authored Mar 8, 2024
2 parents 53c2bc7 + 26b18c2 commit b43ec47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9752,7 +9752,7 @@ export interface components {
* Name
* @description The name of the creator.
*/
name: string;
name?: string | null;
/** Telephone */
telephone?: string | null;
/** URL */
Expand Down Expand Up @@ -12474,7 +12474,7 @@ export interface components {
* Name
* @description The name of the creator.
*/
name: string;
name?: string | null;
/** Telephone */
telephone?: string | null;
/** URL */
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/schema/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -2275,7 +2275,7 @@ class SubworkflowStep(WorkflowStepBase):

class Creator(Model):
class_: str = Field(..., alias="class", title="Class", description="The class representing this creator.")
name: str = Field(..., title="Name", description="The name of the creator.")
name: Optional[str] = Field(None, title="Name", description="The name of the creator.")
address: Optional[str] = Field(
None,
title="Address",
Expand Down

0 comments on commit b43ec47

Please sign in to comment.