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 2657 additions and 472 deletions
Showing only changes of commit e7debdeb41 - Show all commits

View File

@@ -96,7 +96,7 @@ function buildSankeyData(transitions: PathTransition[], depth: number) {
const exitCount = flow - totalOut
if (exitCount > 0) {
const exitId = `exit-${col + 1}`
const exitId = 'exit'
if (!nodeMap.has(exitId)) {
nodeMap.set(exitId, { id: exitId, label: '(exit)', color: EXIT_GREY })
}