fix: includeGuides should always include topics array (#22455)

This commit is contained in:
Mike Surowiec 2021-10-28 09:14:30 -07:00 коммит произвёл GitHub
Родитель af75833675
Коммит b223df9a8d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -62,8 +62,9 @@ export const getProductSubLandingContextFromRequest = (req: any): ProductSubLand
})),
includeGuides: (page.includeGuides || []).map((guide: any) => {
return {
...pick(guide, ['href', 'title', 'intro', 'topics']),
...pick(guide, ['href', 'title', 'intro']),
type: guide.type || '',
topics: guide.topics || [],
}
}),
}