@adobe/helix-rum-enhancer
Advanced tools
Comparing version 2.7.5 to 2.7.6
@@ -0,1 +1,8 @@ | ||
## [2.7.6](https://github.com/adobe/helix-rum-enhancer/compare/v2.7.5...v2.7.6) (2024-05-21) | ||
### Bug Fixes | ||
* no type leads to empty checkpoint ([#167](https://github.com/adobe/helix-rum-enhancer/issues/167)) ([c1d41ad](https://github.com/adobe/helix-rum-enhancer/commit/c1d41ad084fd9e0e71b3bea7aff54e543ee45953)) | ||
## [2.7.5](https://github.com/adobe/helix-rum-enhancer/compare/v2.7.4...v2.7.5) (2024-05-14) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "2.7.5", | ||
"version": "2.7.6", | ||
"description": "Helix RUM Enhancer", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -164,3 +164,3 @@ /* | ||
sampleRUM('reload', payload); | ||
} else if (type !== 'navigate') { | ||
} else if (type && type !== 'navigate') { | ||
sampleRUM(type, payload); // back, forward, prerender, etc. | ||
@@ -173,3 +173,2 @@ } else if (source && window.location.origin === new URL(source).origin) { | ||
}; | ||
navigate(document.referrer); | ||
@@ -176,0 +175,0 @@ new PerformanceObserver((list) => list |
49895
364