Skip to content

Commit a0a00f1

Browse files
Michał WójcikrlaveycalRC-787sergioc
authored
External contributions (#986)
* replace absolute paths with relative (#985) Signed-off-by: Richard Lavey <[email protected]> * Show ServiceControlUrl in error message when unable to connect (#983) * Show ServiceControlUrl in error message when unable to connect * Update src/ServicePulse.Host/app/js/views/sc_not_available.html Co-authored-by: Sergio <[email protected]> Co-authored-by: Michał Wójcik <[email protected]> Co-authored-by: Sergio <[email protected]> Co-authored-by: Richard Lavey <[email protected]> Co-authored-by: RC-787 <[email protected]> Co-authored-by: Sergio <[email protected]>
1 parent c951bab commit a0a00f1

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

src/ServicePulse.Host/app/js/views/archivedgroups/archivedgroups.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h6>Deleted message groups</h6>
2828
</button>
2929
<ul class="dropdown-menu">
3030
<li ng-repeat="classifier in vm.availableClassifiers">
31-
<a href="/#/archivedgroups/groups?groupBy={{classifier}}">{{classifier}}</a>
31+
<a href="#/archivedgroups/groups?groupBy={{classifier}}">{{classifier}}</a>
3232
</li>
3333
</ul>
3434
</div>

src/ServicePulse.Host/app/js/views/failed_groups/failed-groups-view.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ <h6>Failed message groups</h6>
6565
</button>
6666
<ul class="dropdown-menu">
6767
<li ng-repeat="classifier in vm.availableClassifiers">
68-
<a href="/#/failed-messages/groups?groupBy={{classifier}}">{{classifier}}</a>
68+
<a href="#/failed-messages/groups?groupBy={{classifier}}">{{classifier}}</a>
6969
</li>
7070
</ul>
7171
</div>
@@ -77,8 +77,8 @@ <h6>Failed message groups</h6>
7777
<span class="caret"></span>
7878
</button>
7979
<ul class="dropdown-menu">
80-
<li ng-repeat-start="sort in vm.sortSelectors"><a href="/#/failed-messages/groups?sortBy={{sort.description}}">{{sort.description}}</a></li>
81-
<li ng-repeat-end><a href="/#/failed-messages/groups?sortBy={{sort.description}}&sortdir=desc">{{sort.description}} <span>(Descending)</span></a></li>
80+
<li ng-repeat-start="sort in vm.sortSelectors"><a href="#/failed-messages/groups?sortBy={{sort.description}}">{{sort.description}}</a></li>
81+
<li ng-repeat-end><a href="#/failed-messages/groups?sortBy={{sort.description}}&sortdir=desc">{{sort.description}} <span>(Descending)</span></a></li>
8282
</ul>
8383
</div>
8484
</div>

src/ServicePulse.Host/app/js/views/sc_not_available.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="text-center monitoring-no-data">
22
<h1>Cannot connect to ServiceControl</h1>
33
<p>
4-
ServicePulse is unable to connect to the ServiceControl instance<span id="serviceControlUrl">put here the url we tried to connect to</span>. Please ensure that ServiceControl is running and accessible from your machine.
4+
ServicePulse is unable to connect to the ServiceControl instance at <span id="serviceControlUrl">{{serviceControlUrl}}</span>. Please ensure that ServiceControl is running and accessible from your machine.
55
</p>
66
<div class="action-toolbar">
77
<a href="#/configuration/connections" class="btn btn-default btn-primary">View Connection Details</a> <a class="btn btn-default btn-secondary" href="https://docs.particular.net/monitoring/metrics/">Learn more</a>

src/ServicePulse.Host/app/modules/shell/views/events-view.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ <h1>Events</h1>
5555
<span class="caret"></span>
5656
</button>
5757
<ul class="dropdown-menu">
58-
<li><a href="/#/events?pageSize=20">20</a></li>
59-
<li><a href="/#/events?pageSize=35">35</a></li>
60-
<li><a href="/#/events?pageSize=50">50</a></li>
61-
<li><a href="/#/events?pageSize=75">75</a></li>
58+
<li><a href="#/events?pageSize=20">20</a></li>
59+
<li><a href="#/events?pageSize=35">35</a></li>
60+
<li><a href="#/events?pageSize=50">50</a></li>
61+
<li><a href="#/events?pageSize=75">75</a></li>
6262
</ul>
6363
</div>
6464

0 commit comments

Comments
 (0)