[748a59]: / nih-ct-protocol-ui / src / app / search-criteria / search-criteria.component.html

Download this file

19 lines (12 with data), 553 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
<div class="dropdown">
<ul class="criterias list-group hometitle">
<li *ngFor="let criteria of criterias" class="results_list list-group-item">
The <span class="highlight">platelet greater than or equal to 70000</span> platelets per cubic millimeter
<!-- <span>{{criteria.input}}</span> -->
</li>
</ul>
<div class="dropdown-content" *ngFor="let criteria of criterias">
<a class="data hometitle">{{criteria.results[0].data_suggestions}}</a>
<a class="ctep hometitle">{{criteria.results[0].ctep_suggestions}}</a>
</div>
</div>