Skip to content

Commit

Permalink
fix: make name optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordy Quak committed Nov 14, 2024
1 parent 815c799 commit af80991
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 @@ -95,7 +95,7 @@ const optionConfigurationSchema = Joi.when('type', {
then: Joi.object({
...optionConfigurationSchemaBase,
createActionInputVariable: Joi.object({
name: Joi.string().required(),
name: Joi.string().optional(),
type: Joi.string().required(),
value: Joi.string().allow(''),
}),
Expand Down

0 comments on commit af80991

Please sign in to comment.