Skip to content

Commit 329989c

Browse files
committed
Add missing valid values for simplified_workflow_run_ui_target_history
1 parent 8b62c46 commit 329989c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

client/src/schema/schema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2269,7 +2269,7 @@ export interface components {
22692269
* @default prefer_current
22702270
* @enum {string}
22712271
*/
2272-
simplified_workflow_run_ui_target_history?: "prefer_current" | "prefer_new";
2272+
simplified_workflow_run_ui_target_history?: "current" | "new" | "prefer_current" | "prefer_new";
22732273
/**
22742274
* Single User
22752275
* @description If an e-mail address is specified here, it will hijack remote user mechanics
@@ -10207,7 +10207,7 @@ export interface components {
1020710207
* @default prefer_current
1020810208
* @enum {string}
1020910209
*/
10210-
simplified_workflow_run_ui_target_history?: "prefer_current" | "prefer_new";
10210+
simplified_workflow_run_ui_target_history?: "current" | "new" | "prefer_current" | "prefer_new";
1021110211
/**
1021210212
* Single User
1021310213
* @description If an e-mail address is specified here, it will hijack remote user mechanics

lib/galaxy/schema/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ class ExposableGalaxyConfig(Model):
585585
] = "prefer"
586586

587587
simplified_workflow_run_ui_target_history: Annotated[
588-
Literal["prefer_current", "prefer_new"],
588+
Literal["current", "new", "prefer_current", "prefer_new"],
589589
Field(
590590
title="Simplified Workflow Run Ui Target History",
591591
description="""When the simplified workflow run form is rendered, should the invocation outputs

0 commit comments

Comments
 (0)