@adobe/helix-rum-enhancer
Advanced tools
Comparing version 1.13.1 to 1.13.2
@@ -0,1 +1,8 @@ | ||
## [1.13.2](https://github.com/adobe/helix-rum-enhancer/compare/v1.13.1...v1.13.2) (2024-03-27) | ||
### Bug Fixes | ||
* remove conflicting variables ([3f871d2](https://github.com/adobe/helix-rum-enhancer/commit/3f871d2e1396ddf0f579056db9bfdb8e72c1b6de)) | ||
## [1.13.1](https://github.com/adobe/helix-rum-enhancer/compare/v1.13.0...v1.13.1) (2024-03-27) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "1.13.1", | ||
"version": "1.13.2", | ||
"description": "Helix RUM Enhancer", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -162,3 +162,3 @@ /* | ||
const observer = new PerformanceObserver((list) => { | ||
new PerformanceObserver((list) => { | ||
list.getEntries() | ||
@@ -179,7 +179,5 @@ .filter((entry) => !entry.responseStatus || entry.responseStatus < 400) | ||
} | ||
}); | ||
observer.observe({ type: 'resource', buffered: true }); | ||
}).observe({ type: 'resource', buffered: true }); | ||
const usp = new URLSearchParams(window.location.search); | ||
[...usp.entries()] | ||
[...new URLSearchParams(window.location.search).entries()] | ||
.filter(([key]) => key.startsWith('utm_')) | ||
@@ -186,0 +184,0 @@ .filter(([key]) => key !== 'utm_id') |
41057
228