feat: increase journey depth slider max from 5 to 10
This commit is contained in:
@@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|||||||
|
|
||||||
### Improved
|
### Improved
|
||||||
|
|
||||||
|
- **Deeper journey exploration.** The depth slider on the Journeys page now goes up to 10 steps (previously capped at 5), so you can follow longer visitor paths through your site and see exactly where people go after many clicks.
|
||||||
- **More accurate rage click detection.** Rage clicks no longer fire when you triple-click to select text on a page. Previously, selecting a paragraph (a normal 3-click action) was being counted as a rage click, which inflated frustration metrics. Only genuinely frustrated rapid clicking is tracked now.
|
- **More accurate rage click detection.** Rage clicks no longer fire when you triple-click to select text on a page. Previously, selecting a paragraph (a normal 3-click action) was being counted as a rage click, which inflated frustration metrics. Only genuinely frustrated rapid clicking is tracked now.
|
||||||
- **Fresher CDN data.** BunnyCDN statistics now refresh every 3 hours instead of once a day, so your CDN tab shows much more current bandwidth, request, and cache data.
|
- **Fresher CDN data.** BunnyCDN statistics now refresh every 3 hours instead of once a day, so your CDN tab shows much more current bandwidth, request, and cache data.
|
||||||
- **More accurate dead click detection.** Dead clicks were being reported on elements that actually worked — like close buttons on cart drawers, modal dismiss buttons, and page content areas. Three fixes make dead clicks much more reliable:
|
- **More accurate dead click detection.** Dead clicks were being reported on elements that actually worked — like close buttons on cart drawers, modal dismiss buttons, and page content areas. Three fixes make dead clicks much more reliable:
|
||||||
|
|||||||
@@ -122,13 +122,13 @@ export default function JourneysPage() {
|
|||||||
<input
|
<input
|
||||||
type="range"
|
type="range"
|
||||||
min={2}
|
min={2}
|
||||||
max={5}
|
max={10}
|
||||||
step={1}
|
step={1}
|
||||||
value={depth}
|
value={depth}
|
||||||
onChange={(e) => setDepth(Number(e.target.value))}
|
onChange={(e) => setDepth(Number(e.target.value))}
|
||||||
className="w-32 accent-brand-orange"
|
className="w-32 accent-brand-orange"
|
||||||
/>
|
/>
|
||||||
<span className="text-sm font-medium text-neutral-900 dark:text-white w-4">{depth}</span>
|
<span className="text-sm font-medium text-neutral-900 dark:text-white w-5">{depth}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Select
|
<Select
|
||||||
|
|||||||
Reference in New Issue
Block a user