diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index b888d567942d..cdc9d31b8dd3 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -4555,6 +4555,23 @@ export interface components { */ user_email?: string | null; }; + /** EncodedJobParameterHistoryItem */ + EncodedJobParameterHistoryItem: { + /** Hid */ + hid?: number | null; + /** + * Id + * @example 0123456789ABCDEF + */ + id: string; + /** Name */ + name: string; + /** + * Source + * @description The source of this dataset, either `hda`, `ldda`, `hdca`, `dce` or `dc` depending of its origin. + */ + src: components["schemas"]["DataItemSourceType"]; + }; /** ExportHistoryArchivePayload */ ExportHistoryArchivePayload: { /** @@ -7735,7 +7752,13 @@ export interface components { * Value * @description The values of the job parameter */ - value?: Record | null; + value?: + | components["schemas"]["EncodedJobParameterHistoryItem"][] + | number + | number + | boolean + | string + | null; }; /** * JobSourceType diff --git a/client/src/components/Tool/ToolForm.vue b/client/src/components/Tool/ToolForm.vue index 1a88b40654e4..9c524b2c0511 100644 --- a/client/src/components/Tool/ToolForm.vue +++ b/client/src/components/Tool/ToolForm.vue @@ -75,6 +75,12 @@ title="Attempt to re-use jobs with identical parameters?" help="This may skip executing jobs that you have already run." type="boolean" /> +