biDirectional tool is changed as target tool length and width measurements are added into lesion table
11 lines
428 B
HTML
11 lines
428 B
HTML
<template name="lesionTableTimepointCell">
|
|
{{ #if hasDataAtThisTimepoint }}
|
|
{{ #if isTarget }}
|
|
<td class="lesionTableTimepointCell targetCell" tabindex="1">{{displayData}}</td>
|
|
{{ else }}
|
|
<td class="lesionTableTimepointCell nonTargetCell" tabindex="2">{{displayData}}</td>
|
|
{{ /if }}
|
|
{{ else }}
|
|
<td class="lesionTableTimepointCell empty"></td>
|
|
{{ /if }}
|
|
</template> |