Skip to content

Commit

Permalink
fix: push stdDev to separate line for non-SUV modalities (#1320)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyrb authored Oct 5, 2020
1 parent 79660e9 commit cba4da6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tools/annotation/RectangleRoiTool.js
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,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 cba4da6

Please sign in to comment.