Merge branch 'tom/sb-512-angular-14' into tom/sb-606-migrate-stories-and-delete-angular-cli

This commit is contained in:
Norbert de Langen 2022-10-05 16:46:29 +02:00
commit c12536d770
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762

View File

@ -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;