LT-347: Switch new lesions to only display new non-targets. New targets are NOT displayed

This commit is contained in:
Erik Ziegler 2016-11-16 16:40:59 +01:00
parent 3c4d62fd0b
commit 2b88fc4c7a

View File

@ -13,12 +13,12 @@ OHIF.measurements.getLocation = collection => {
Template.measurementTableView.helpers({
getNewMeasurementType(tool) {
// TODO: Check Conformance criteria here.
// RECIST should be targets, irRC should be nonTargets
// RECIST should be nonTargets, irRC should be targets
return {
id: tool.id,
name: tool.name,
cornerstoneToolType: 'bidirectional',
measurementTypeId: 'targets'
cornerstoneToolType: 'nonTarget',
measurementTypeId: 'nonTargets'
};
},