Skip to content

Commit

Permalink
fix: add inline
Browse files Browse the repository at this point in the history
  • Loading branch information
sventruschel committed Feb 29, 2024
1 parent 0989579 commit 08cc53c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/validations/prefab/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ const wrapperSchema = (
options: Joi.array()
.items(linkedOptionSchema, linkedPartialSchema)
.required(),
displayType: Joi.string().valid('inline-block', 'block').optional(),
displayType: Joi.string()
.valid('inline-block', 'block', 'inline')
.optional(),
descendants: Joi.array()
.items(
Joi.custom(validateComponent(styles, componentStyleMap, prefabType)),
Expand Down

0 comments on commit 08cc53c

Please sign in to comment.