Merge pull request #8468 from soundasleep/patch-2

Fix 'path is required in .pageview()' in GA addon
This commit is contained in:
Michael Shilman 2019-11-12 16:59:45 +08:00 committed by Michael Shilman
parent 06e41acde9
commit 0bbbf183e7

View File

@ -8,8 +8,8 @@ addons.register('storybook/google-analytics', api => {
ReactGA.initialize(window.STORYBOOK_GA_ID, window.STORYBOOK_REACT_GA_OPTIONS);
api.on(STORY_CHANGED, () => {
const { url } = api.getUrlState();
ReactGA.pageview(url);
const { path } = api.getUrlState();
ReactGA.pageview(path);
});
api.on(STORY_ERRORED, ({ description }: { description: string }) => {
ReactGA.exception({