Skip to content

Commit

Permalink
Merge pull request #17226 from mvdbeek/fix_job_param_display
Browse files Browse the repository at this point in the history
[23.2] Fix job parameter display
  • Loading branch information
mvdbeek authored Dec 23, 2023
2 parents 02f44b4 + b3fd914 commit cca0aff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6738,7 +6738,7 @@ export interface components {
* Value
* @description The values of the job parameter
*/
value: Record<string, never>;
value?: Record<string, never>;
};
/**
* JobSourceType
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/schema/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class JobParameter(Model):
title="Depth",
description="The depth of the job parameter.",
)
value: Any = Field(default=Required, title="Value", description="The values of the job parameter")
value: Optional[Any] = Field(default=None, title="Value", description="The values of the job parameter")
notes: Optional[str] = Field(default=None, title="Notes", description="Notes associated with the job parameter.")


Expand Down

0 comments on commit cca0aff

Please sign in to comment.