mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +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);
|
ReactGA.initialize(window.STORYBOOK_GA_ID, window.STORYBOOK_REACT_GA_OPTIONS);
|
||||||
|
|
||||||
api.on(STORY_CHANGED, () => {
|
api.on(STORY_CHANGED, () => {
|
||||||
const { url } = api.getUrlState();
|
const { path } = api.getUrlState();
|
||||||
ReactGA.pageview(url);
|
ReactGA.pageview(path);
|
||||||
});
|
});
|
||||||
api.on(STORY_ERRORED, ({ description }: { description: string }) => {
|
api.on(STORY_ERRORED, ({ description }: { description: string }) => {
|
||||||
ReactGA.exception({
|
ReactGA.exception({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user