mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
We don't have to have an argtype for every arg
This commit is contained in:
parent
2068c3c254
commit
7e66592949
@ -61,7 +61,7 @@ const cleanArgsDecorator: DecoratorFunction<AngularFramework> = (storyFn, contex
|
||||
const argType = context.argTypes[key];
|
||||
|
||||
// Only keeps args with a control or an action in argTypes
|
||||
if (argType.action || argType.control) {
|
||||
if (argType?.action || argType?.control) {
|
||||
return { ...obj, [key]: arg };
|
||||
}
|
||||
return obj;
|
||||
|
Loading…
x
Reference in New Issue
Block a user