This commit is contained in:
Norbert de Langen 2022-08-03 15:25:34 +02:00
parent 08c4231f69
commit 2f181650ed
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762

View File

@ -11,9 +11,11 @@ const SECTIONS = ['props', 'events', 'slots', 'methods'];
function isEnum(propDef: PropDef, docgenInfo: DocgenInfo): false | PropDef {
// cast as any, since "values" doesn't exist in DocgenInfo type
const { type, values } = docgenInfo as any;
const matched = Array.isArray(values) && values.length && type && type.name !== 'enum';
const matched = Array.isArray(values) && values.length && type?.name !== 'enum';
if (!matched) return false;
if (!matched) {
return false;
}
const enumString = values.join(', ');
let { summary } = propDef.type;