Release 0.15.0-alpha #43

Merged
uz1mani merged 61 commits from staging into main 2026-03-12 23:13:42 +00:00
29 changed files with 2672 additions and 472 deletions
Showing only changes of commit df394b85ef - Show all commits

View File

@@ -69,6 +69,7 @@ function buildSankeyData(transitions: PathTransition[], depth: number) {
for (const t of transitions) {
if (t.step_index >= numCols || t.step_index + 1 >= numCols) continue
if (t.from_path === t.to_path) continue // skip same-page transitions (reloads)
const fromId = `${t.step_index}:${t.from_path}`
const toId = `${t.step_index + 1}:${t.to_path}`