Skip to content

Commit

Permalink
Merge pull request #328 from synthetichealth/symptom-distribution-patch
Browse files Browse the repository at this point in the history
Fix graphviz error when changing symptom probability
  • Loading branch information
jawalonoski authored Oct 3, 2023
2 parents 6f08005 + 4b9be2e commit f78aaf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/graphviz.js
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ const stateDescription = (state) =>{
let e = state['exact']
details = `${s}: ${e['quantity']}`
} else if (state['distribution'] !== undefined ) {
details = `${s}: ${distributionString(state['distribution'])}}`
details = `${s}: ${distributionString(state['distribution'])}`
}
if (p && p < 1.0 && p > 0) {
let pct = p*100;
Expand Down

0 comments on commit f78aaf0

Please sign in to comment.