Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1487 from DashboardHub/issue-1471
Browse files Browse the repository at this point in the history
fix(monitors): #1471 fixed the unsuccesful counter issue on UI
  • Loading branch information
eddiejaoude committed Sep 10, 2019
2 parents f83afc6 + 9874de3 commit 00c4d2d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@
<ng-container matColumnDef="ping">
<th mat-header-cell *matHeaderCellDef>Ping</th>
<td mat-cell *matCellDef="let element" class="monitor-list__card__content__table__ping">
<span>Successful pings: {{ element.successfulPings || 0 }} | Unsuccessful pings :
{{ element.unsuccessfulPings || 0 }}</span>
<span>Successful pings: {{ element.successfulPings || 0 }} | Unsuccessful pings : {{ element.unsuccessfulPings || 0 }}</span>
</td>
</ng-container>
<ng-container matColumnDef="action">
Expand Down

0 comments on commit 00c4d2d

Please sign in to comment.