mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:21:14 +08:00
cleanup
This commit is contained in:
parent
08c4231f69
commit
2f181650ed
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user