From 6c6fe9a27c72d93814b828c780f75359b8bfcc9e Mon Sep 17 00:00:00 2001 From: Khushboo Date: Sun, 8 Sep 2019 21:15:42 +0530 Subject: [PATCH] fix(monitors): #1471 fixed the unsuccesful counter issue on UI --- web/src/app/monitors/monitors-list/monitors-list.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/app/monitors/monitors-list/monitors-list.component.html b/web/src/app/monitors/monitors-list/monitors-list.component.html index 0726b5d9c..15b4f2075 100644 --- a/web/src/app/monitors/monitors-list/monitors-list.component.html +++ b/web/src/app/monitors/monitors-list/monitors-list.component.html @@ -60,7 +60,7 @@ Ping - Successful pings: {{ element.successfulPings || 0 }} | Unsuccessful pings : {{ element.unsuccessgulPings || 0 }} + Successful pings: {{ element.successfulPings || 0 }} | Unsuccessful pings : {{ element.unsuccessfulPings || 0 }}