mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Remove property alias
This commit is contained in:
parent
4cfd34d586
commit
14f6080a30
@ -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];
|
||||
|
||||
|
@ -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];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user