Skip to content

Commit

Permalink
fix(EllipticalRoiTool): Push stdDev to separate line for non-SUV moda…
Browse files Browse the repository at this point in the history
…lities (#1344)
  • Loading branch information
evren217 authored Jan 19, 2021
1 parent 8a261a2 commit f8a9110
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tools/annotation/EllipticalRoiTool.js
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,8 @@ function _createTextBoxContent(
otherLines.push(`${meanString}${meanSuvString}`);
otherLines.push(`${stdDevString} ${stdDevSuvString}`);
} else {
otherLines.push(`${meanString} ${stdDevString}`);
otherLines.push(`${meanString}`);
otherLines.push(`${stdDevString}`);
}

if (showMinMax) {
Expand Down

0 comments on commit f8a9110

Please sign in to comment.