Merge pull request #2777 from alexandermikuta/master

Update helpers.ts
This commit is contained in:
Igor 2018-01-20 15:07:12 +02:00 committed by GitHub
commit 8ad831f2b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ const createComponentFromTemplate = (template: string): Function => {
const initModule = (
currentStory: IGetStoryWithContext,
context: IContext,
reRender: boolean
reRender: boolean = false,
): Function => {
const storyObj = currentStory(context);
const { component, template, props, moduleMetadata = {} } = storyObj;
@ -131,7 +131,7 @@ export const renderNgError = debounce((error: Error) => {
const errorData = {
message: error.message,
stack: error.stack,
};
} as NgProvidedData;
const Module = getModule([ErrorComponent], [], [ErrorComponent], errorData, {});