diff options
author | zhangab <zhanganbing@chinamobile.com> | 2018-11-08 12:37:25 +0800 |
---|---|---|
committer | zhangab <zhanganbing@chinamobile.com> | 2018-11-08 12:38:00 +0800 |
commit | a85d5280af7c04207bfb725e4bae037ba0eac3bf (patch) | |
tree | 9f6bf2f6d2810f5334c73ce0e77ad1559919dee9 /usecaseui-portal/src/app/alarm/alarm.component.html | |
parent | 5068ef4e733342d03d30ad895e5dcbeb4b6390b1 (diff) |
Fix VNF Alarm Query Bugs
Change-Id: I8cc18d8f7bf02002d062e30aa5b5abd13743d6dd
Issue-ID: USECASEUI-165
Signed-off-by: zhangab <zhanganbing@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/alarm/alarm.component.html')
-rw-r--r-- | usecaseui-portal/src/app/alarm/alarm.component.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/usecaseui-portal/src/app/alarm/alarm.component.html b/usecaseui-portal/src/app/alarm/alarm.component.html index b1f49949..894cdf5b 100644 --- a/usecaseui-portal/src/app/alarm/alarm.component.html +++ b/usecaseui-portal/src/app/alarm/alarm.component.html @@ -88,12 +88,12 @@ <thead (nzSortChange)="sort($event)" nzSingleSort> <tr> <th nzWidth="5%">NO</th> - <th nzWidth="20%">Source Name</th> + <th nzWidth="10%">Source Name</th> <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="15%">SpecificProblem</th> + <th nzWidth="15%">Report Time</th> + <th nzWidth="15%">Clear Time</th> + <th nzWidth="10%">Status</th> <th nzWidth="10%">Action</th> </tr> </thead> @@ -103,8 +103,8 @@ <td>{{item.sourceName}}</td> <td>{{item.priority}}</td> <td>{{item.specificProblem}}</td> - <td>{{item.startEpochMicrosec}}</td> - <td>{{item.startEpochMicrosecCleared}}</td> + <td>{{item.startEpochMicrosec | date:'yyyy-MM-dd HH:mm:ss'}}</td> + <td>{{item.startEpochMicrosecCleared | date:'yyyy-MM-dd HH:mm:ss'}}</td> <td>{{item.status}}</td> <td class="action"><a (click)="detailShow(item)"><i class="details"></i></a></td> </tr> |