mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
Merge pull request #8468 from soundasleep/patch-2
Fix 'path is required in .pageview()' in GA addon
This commit is contained in:
parent
06e41acde9
commit
0bbbf183e7
@ -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({
|
||||
|
Loading…
x
Reference in New Issue
Block a user