Skip to content

Commit

Permalink
fix: make value optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordy Quak committed Nov 18, 2024
1 parent af80991 commit 2d0716b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validations/prefab/componentOption.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const optionConfigurationSchema = Joi.when('type', {
createActionInputVariable: Joi.object({
name: Joi.string().optional(),
type: Joi.string().required(),
value: Joi.string().allow(''),
value: Joi.string().allow('').optional(),
}),
}),
})
Expand Down

0 comments on commit 2d0716b

Please sign in to comment.