@adobe/helix-rum-enhancer
Advanced tools
Comparing version
@@ -0,1 +1,8 @@ | ||
## [2.7.5](https://github.com/adobe/helix-rum-enhancer/compare/v2.7.4...v2.7.5) (2024-05-14) | ||
### Bug Fixes | ||
* in case window.hlx exists but window.hlx.rum is undefined ([581653b](https://github.com/adobe/helix-rum-enhancer/commit/581653b8e4e3e28c0c8de314454025cd8dbf4618)) | ||
## [2.7.4](https://github.com/adobe/helix-rum-enhancer/compare/v2.7.3...v2.7.4) (2024-05-02) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "2.7.4", | ||
"version": "2.7.5", | ||
"description": "Helix RUM Enhancer", | ||
@@ -35,3 +35,3 @@ "main": "src/index.js", | ||
"@semantic-release/git": "10.0.1", | ||
"@semantic-release/npm": "12.0.0", | ||
"@semantic-release/npm": "12.0.1", | ||
"c8": "9.1.0", | ||
@@ -48,3 +48,3 @@ "codecov": "3.8.3", | ||
"mocha-multi-reporters": "1.5.1", | ||
"semantic-release": "23.0.8" | ||
"semantic-release": "23.1.1" | ||
}, | ||
@@ -51,0 +51,0 @@ "lint-staged": { |
@@ -15,3 +15,3 @@ /* | ||
const DEFAULT_TRACKING_EVENTS = ['click', 'cwv', 'form', 'enterleave', 'viewblock', 'viewmedia', 'loadresource', 'utm']; | ||
const { sampleRUM, queue, isSelected } = window.hlx ? window.hlx.rum : {}; | ||
const { sampleRUM, queue, isSelected } = (window.hlx && window.hlx.rum) ? window.hlx.rum : {}; | ||
@@ -18,0 +18,0 @@ const urlSanitizers = { |
49601
0.6%