diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index f878a162098a..9abd677c7b27 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -9132,7 +9132,7 @@ export interface components { * @description The values of the job parameter */ value?: - | components["schemas"]["EncodedJobParameterHistoryItem"][] + | (components["schemas"]["EncodedJobParameterHistoryItem"] | null)[] | number | number | boolean diff --git a/client/src/components/JobParameters/JobParametersArrayValue.vue b/client/src/components/JobParameters/JobParametersArrayValue.vue index 31be3694434a..014d0e6d12de 100644 --- a/client/src/components/JobParameters/JobParametersArrayValue.vue +++ b/client/src/components/JobParameters/JobParametersArrayValue.vue @@ -1,8 +1,9 @@