Merge pull request #12165 from HerrBertling/fix/11944-vue-types-for-real-sorry

Addon-docs: Fix Vue ArgsTable sanitizing of item.type.elements to item.type.value
This commit is contained in:
Michael Shilman 2020-08-20 22:01:20 +08:00 committed by GitHub
commit 800b73e33e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,16 @@ export const extractComponentSectionArray = (docgenSection: any) => {
const createPropDef = getPropDefFactory(typeSystem);
return docgenSection.map((item: any) => {
const sanitizedItem = { ...item, value: item.elements };
let sanitizedItem = item;
if (item.type?.elements) {
sanitizedItem = {
...item,
type: {
...item.type,
value: item.type.elements,
},
};
}
return extractProp(sanitizedItem.name, sanitizedItem, typeSystem, createPropDef);
});
};