summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/log/log.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/log/log.component.html')
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/log/log.component.html11
1 files changed, 10 insertions, 1 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/log/log.component.html b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/log/log.component.html
index 3bf0b768..df69db51 100644
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/log/log.component.html
+++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/log/log.component.html
@@ -14,12 +14,21 @@
<th>User Name</th>
<th>Log Time</th>
<th>Action</th>
+ <th>TimeTaken</th>
</tr>
<tr *ngFor="let item of logDataList; let i = index;">
<td><label>{{i+1}}</label></td>
<td><label>{{item.userName}}</label></td>
<td><label>{{item.logTime}}</label></td>
- <td><label>{{item.action}}</label></td>
+ <td>
+ <div *ngIf="item.action.split('||')[0] == 'linkToReport'">
+ <a (click)="linkToReport(item.action.split('||')[1], item.action.split('||')[2]+item.action.split('||')[4])" [routerLink]="">{{item.action.split('||')[3]}}</a>
+ </div>
+ <div *ngIf="item.action.split('||')[0] != 'linkToReport'"><label>{{item.action}}</label></div>
+
+ </td>
+ <td><label>{{item.timeTaken}}</label></td>
+
</tr>
</table>
</div>