From 63ab6de405e942b666ec3e04650019cb73c570c9 Mon Sep 17 00:00:00 2001 From: John Wilshire Date: Wed, 22 Jan 2020 17:13:35 -0500 Subject: [PATCH] Added missing = in angular guide L56 was missing an `=`, breaking `npm run storybook` --- docs/src/pages/guides/guide-angular/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/guides/guide-angular/index.md b/docs/src/pages/guides/guide-angular/index.md index 9cd931db07a3..699967947daa 100644 --- a/docs/src/pages/guides/guide-angular/index.md +++ b/docs/src/pages/guides/guide-angular/index.md @@ -53,7 +53,7 @@ For a basic Storybook configuration, the only thing you need to do is tell Story To do that, create a file at `.storybook/main.js` with the following content: ```js -module.exports { +module.exports = { stories: ['../src/**/*.stories.[tj]s'], }; ```