|
|
|
|
@ -624,14 +624,18 @@
|
|
|
|
|
</ion-slide>
|
|
|
|
|
<ion-slide>
|
|
|
|
|
<ng-container *ngIf="activeSegment === 'action-history'">
|
|
|
|
|
<ion-col size="12" *ngIf="showActionHistoryLoading">
|
|
|
|
|
<p>{{'worklist, loading'| translate}} <img style="width: 3%;"
|
|
|
|
|
src="../assets/icon/progress-loading.gif" /></p>
|
|
|
|
|
</ion-col>
|
|
|
|
|
|
|
|
|
|
<ion-card class="cardContent action-history" style="width: 100%;">
|
|
|
|
|
<ion-card-content>
|
|
|
|
|
|
|
|
|
|
<div class="noDataDiv" [hidden]="actionHistoryRes && actionHistoryRes.length > 0">
|
|
|
|
|
<div class="noDataDiv" *ngIf = "actionHistoryRes && actionHistoryRes.length === 0 && !showActionHistoryLoading">
|
|
|
|
|
<p>{{ 'general, empty' | translate}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="actionHistoryRes && actionHistoryRes.length > 0 ">
|
|
|
|
|
<div *ngIf="actionHistoryRes && actionHistoryRes.length > 0 && !showActionHistoryLoading ">
|
|
|
|
|
<ion-list class="notification-list ">
|
|
|
|
|
<div class="timeline">
|
|
|
|
|
<ion-item *ngFor="let actionHistory of actionHistoryRes">
|
|
|
|
|
|