mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +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 {
|
function isEnum(propDef: PropDef, docgenInfo: DocgenInfo): false | PropDef {
|
||||||
// cast as any, since "values" doesn't exist in DocgenInfo type
|
// cast as any, since "values" doesn't exist in DocgenInfo type
|
||||||
const { type, values } = docgenInfo as any;
|
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(', ');
|
const enumString = values.join(', ');
|
||||||
let { summary } = propDef.type;
|
let { summary } = propDef.type;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user