Fix probability slider bugs (0% and upgraded nodes) #4
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Fixed two critical probability slider bugs:
Bug 1: Setting a slider to 0% displayed correctly on arrows but calculated as 50% downstream
||operator treated 0 as falsy, falling back to 50??(nullish coalescing) to only fall back on null/undefinedBug 2: Upgrading intermediate nodes to question nodes - slider affected arrows but not downstream calculations
questionNodeIndices.indexOf()which found wrong position when node indices didn't align with slider indicesMap<string, number>keyed by node ID for direct O(1) lookupsChanges
sliderProbsarray withMap<string, number>keyed by node IDquestionNodeIndices.indexOf()lookupnodeIdToProb.get(sourceNode.id)||→??sliderIndexfield for sidebar visual sorting only (no longer used in calculations)Test Plan
🤖 Generated with Claude Code