Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
<div class="accordion ewv" [ngClass]="{'split': isSplitView}">
<input id="{{accordionId}}" type="checkbox" [(ngModel)]="collapseState" [checked]="collapseState" role="button" aria-label="Health Care Condition Information Section">
<label for="ACC_info_healthProcCodes_1" for="{{accordionId}}">Health Care Condition Information</label>
<!-- Accordion Content -->
<div class="accordion-content row">
<app-messages [ewvNoInfo]="!healthCareCondition" [ewvMsg]="noDataMsg"></app-messages>
<app-messages [ewvNoInfo]="healthCareCondition?.length === 0" [ewvMsg]="noDataMsg"></app-messages>
<div *ngIf="!healthCareCondition" class="row"></div>
<div *ngIf="healthCareCondition?.length === 0" class="row"></div>
<div *ngIf="healthCareCondition" class="col two">
<div>
<table id="TBL_hi_healthCare_conditionInfo_1" class="clean-table healthcare-table" *ngIf="healthCareCondition.length > 0">
<thead>
<tr>
<th *ngFor="let column of HiHealthCareValueInfoTableColumns" title="{{column['title']}}">
{{column['title']}}
</th>
</tr>
</thead>
<tbody>
<ng-container *ngFor="let row of healthCareCondition">
<tr>
<td *ngFor="let column of HiHealthCareValueInfoTableColumns">
<span title="{{row[column['property']]}}">{{row[column['property']]}}</span>
</td>
</tr>
</ng-container>
</tbody>
</table>
<!-- <app-table *ngIf="healthCareCondition.length > 0" [columns]="HiHealthCareValueInfoTableColumns" [loading]="loading" [rows]="healthCareCondition"
[paginationSettings]="paginationSettings" [tableSettings]="tableSettings">
</app-table> -->
</div>
</div>
</div>
<div class="bottom-bar"></div>
</div>