fix(v2): make optional title for footer links column (#3666)

This commit is contained in:
Alexey Pyltsyn 2020-10-31 19:57:11 +03:00 committed by GitHub
parent 3a8bad2068
commit 52e7511869
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -262,7 +262,7 @@ const ThemeConfigSchema = Joi.object({
links: Joi.array()
.items(
Joi.object({
title: Joi.string().required(),
title: Joi.string(),
items: Joi.array().items(FooterLinkItemSchema).default([]),
}),
)