Skip to content

Commit

Permalink
Add missing valid values for simplified_workflow_run_ui_target_history
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed Aug 10, 2023
1 parent 8b62c46 commit 329989c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/src/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2269,7 +2269,7 @@ export interface components {
* @default prefer_current
* @enum {string}
*/
simplified_workflow_run_ui_target_history?: "prefer_current" | "prefer_new";
simplified_workflow_run_ui_target_history?: "current" | "new" | "prefer_current" | "prefer_new";
/**
* Single User
* @description If an e-mail address is specified here, it will hijack remote user mechanics
Expand Down Expand Up @@ -10207,7 +10207,7 @@ export interface components {
* @default prefer_current
* @enum {string}
*/
simplified_workflow_run_ui_target_history?: "prefer_current" | "prefer_new";
simplified_workflow_run_ui_target_history?: "current" | "new" | "prefer_current" | "prefer_new";
/**
* Single User
* @description If an e-mail address is specified here, it will hijack remote user mechanics
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/schema/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ class ExposableGalaxyConfig(Model):
] = "prefer"

simplified_workflow_run_ui_target_history: Annotated[
Literal["prefer_current", "prefer_new"],
Literal["current", "new", "prefer_current", "prefer_new"],
Field(
title="Simplified Workflow Run Ui Target History",
description="""When the simplified workflow run form is rendered, should the invocation outputs
Expand Down

0 comments on commit 329989c

Please sign in to comment.