Remove property alias

This commit is contained in:
Max Sagan 2019-03-29 13:32:52 +11:00
parent 4cfd34d586
commit 14f6080a30
2 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ export const initModuleData = (storyObj: NgStory): any => {
template,
props,
moduleMetadata = {},
requiresComponentDeclaration: componentRequiresDeclaration = true,
requiresComponentDeclaration = true,
} = storyObj;
const isCreatingComponentFromTemplate = Boolean(template);
@ -49,7 +49,7 @@ export const initModuleData = (storyObj: NgStory): any => {
: component;
const componentDeclarations =
isCreatingComponentFromTemplate || componentRequiresDeclaration
isCreatingComponentFromTemplate || requiresComponentDeclaration
? [AppComponent, AnnotatedComponent]
: [AppComponent];

View File

@ -53,7 +53,7 @@ const initModule = (storyFn: IStoryFn) => {
props,
styles,
moduleMetadata = {},
requiresComponentDeclaration: componentRequiresDeclaration = true,
requiresComponentDeclaration = true,
} = storyObj;
const isCreatingComponentFromTemplate = Boolean(template);
@ -63,7 +63,7 @@ const initModule = (storyFn: IStoryFn) => {
: component;
const componentDeclarations =
isCreatingComponentFromTemplate || componentRequiresDeclaration
isCreatingComponentFromTemplate || requiresComponentDeclaration
? [AppComponent, AnnotatedComponent]
: [AppComponent];