Skip to content

Commit

Permalink
fix(v2): Allow null as valid for title of item in footer links (#4267)
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-qnimble authored Feb 22, 2021
1 parent a859523 commit 333545a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ const ThemeConfigSchema = Joi.object({
links: Joi.array()
.items(
Joi.object({
title: Joi.string(),
title: Joi.string().allow(null),
items: Joi.array().items(FooterLinkItemSchema).default([]),
}),
)
Expand Down

0 comments on commit 333545a

Please sign in to comment.