diff options
Diffstat (limited to 'usecaseui-portal/src/app/alarm/alarm.component.html')
-rw-r--r-- | usecaseui-portal/src/app/alarm/alarm.component.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usecaseui-portal/src/app/alarm/alarm.component.html b/usecaseui-portal/src/app/alarm/alarm.component.html index 7fbbc039..b1f49949 100644 --- a/usecaseui-portal/src/app/alarm/alarm.component.html +++ b/usecaseui-portal/src/app/alarm/alarm.component.html @@ -83,7 +83,7 @@ <button class="open-close" [ngClass]="{'open-close-active':alarmShow}" (click)="alarmShow=!alarmShow"></button> </div> <div class="tablelist"> - <nz-table #nzTable [nzData]="list" [nzPageSize]="10" nzShowSizeChanger nzShowQuickJumper [nzPageSizeOptions]="[5,10,15,20]" + <nz-table #nzTable [nzData]="list" [(nzPageSize)]="pageSize" nzShowSizeChanger nzShowQuickJumper [nzPageSizeOptions]="[5,10,15,20]" nzSize="middle"> <thead (nzSortChange)="sort($event)" nzSingleSort> <tr> @@ -92,6 +92,7 @@ <th nzWidth="10%">Priority</th> <th nzWidth="20%">SpecificProblem</th> <th nzWidth="20%">Report Time</th> + <th nzWidth="20%">Report Time</th> <th nzWidth="15%">Status</th> <th nzWidth="10%">Action</th> </tr> @@ -102,7 +103,8 @@ <td>{{item.sourceName}}</td> <td>{{item.priority}}</td> <td>{{item.specificProblem}}</td> - <td>{{item.sequence}}</td> + <td>{{item.startEpochMicrosec}}</td> + <td>{{item.startEpochMicrosecCleared}}</td> <td>{{item.status}}</td> <td class="action"><a (click)="detailShow(item)"><i class="details"></i></a></td> </tr> |