fix: update DICOMSR and Measurement Panel copy to use L/W (#2104)

This commit is contained in:
Danny Brown 2020-10-12 21:43:28 -04:00 committed by GitHub
parent dc2a58da91
commit 0d9da69580
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -294,7 +294,7 @@ function _getTextBoxLinesFromLabels(labels) {
}
const SHORT_HAND_MAP = {
'Short Axis': 'S ',
'Short Axis': 'W ',
'Long Axis': 'L ',
AREA: 'Area ',
Length: '',

View File

@ -376,8 +376,8 @@ function _getDisplayText(
const roundedLongestDiameter = _round(longestDiameter, 1);
return [
`l: ${roundedLongestDiameter} ${unit} (S:${seriesNumber}, I:${instanceNumber})`,
`s: ${roundedShortestDiameter} ${unit}`,
`L: ${roundedLongestDiameter} ${unit} (S:${seriesNumber}, I:${instanceNumber})`,
`W: ${roundedShortestDiameter} ${unit}`,
];
}
case types.ELLIPSE: {