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({ Template.measurementTableView.helpers({
getNewMeasurementType(tool) { getNewMeasurementType(tool) {
// TODO: Check Conformance criteria here. // TODO: Check Conformance criteria here.
// RECIST should be targets, irRC should be nonTargets // RECIST should be nonTargets, irRC should be targets
return { return {
id: tool.id, id: tool.id,
name: tool.name, name: tool.name,
cornerstoneToolType: 'bidirectional', cornerstoneToolType: 'nonTarget',
measurementTypeId: 'targets' measurementTypeId: 'nonTargets'
}; };
}, },