Skip to content

Commit 1c0856f

Browse files
author
Pete
committed
Merge branch 'hotfix-1.3.4'
2 parents 1656507 + c5e7da0 commit 1c0856f

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

src/ServicePulse.Host/app/js/configuration/configuration.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<hr>
33
<ul class="breadcrumb">
44
<li>
5-
<a href="/">Home</a>
5+
<a href="#/dashboard">Home</a>
66
</li>
77
<li>Configuration</li>
88
</ul>

src/ServicePulse.Host/app/js/custom_checks/customChecks.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<hr>
33
<ul class="breadcrumb">
44
<li>
5-
<a href="/">Home</a>
5+
<a href="#/dashboard">Home</a>
66
</li>
77
<li>Custom Checks</li>
88
</ul>

src/ServicePulse.Host/app/js/endpoints/endpoints.controller.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@
1717
$scope.model.active = [];
1818
$scope.model.inactive = [];
1919

20-
for (var j = 0; j < endpoints.length; j++) {
21-
var item = endpoints[j];
20+
var endpointList = endpoints.data;
21+
22+
for (var j = 0; j < endpointList.length; j++) {
23+
var item = endpointList[j];
2224

2325
if (!item.monitor_heartbeat) {
2426
continue;

src/ServicePulse.Host/app/js/endpoints/endpoints.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<hr>
33
<ul class="breadcrumb">
44
<li>
5-
<a href="#">Home</a>
5+
<a href="#/dashboard">Home</a>
66
</li>
77
<li>Endpoints Overview</li>
88
</ul>

src/ServicePulse.Host/app/js/failed_messages/failedMessages.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<hr>
33
<ul class="breadcrumb">
44
<li>
5-
<a href="#">Home</a>
5+
<a href="#/dashboard">Home</a>
66
</li>
77
<li>Failed Messages</li>
88
</ul>

0 commit comments

Comments
 (0)