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 Occurrence Span Information Section">
<label for="{{accordionId}}">Health Care Occurrence Span Information</label>
<!-- Accordion Content -->
<div class="accordion-content row">
<!-- <app-messages [ewvNoInfo]="!healthCareOccurranceSpan" [ewvMsg]="noDataMsg"></app-messages> -->
<app-messages [ewvNoInfo]="healthCareOccurranceSpan?.length === 0" [ewvMsg]="noDataMsg"></app-messages>
<div *ngIf="!healthCareOccurranceSpan" class="row"></div>
<div *ngIf="healthCareOccurranceSpan?.length === 0" class="row"></div>
<div *ngIf="healthCareOccurranceSpan" class="col two">
<div>
<table id="TBL_hi_healthCare_occurenceSpan_info_1" class="clean-table healthcare-table" *ngIf="healthCareOccurranceSpan?.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 healthCareOccurranceSpan">
<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="healthCareOccurranceSpan.length > 0" [columns]="HiHealthCareValueInfoTableColumns" [loading]="loading"
[rows]="healthCareOccurranceSpan" [paginationSettings]="paginationSettings" [tableSettings]="tableSettings">
</app-table> -->
</div>
</div>
</div>
<div class="bottom-bar"></div>
</div>