Skip to content

Commit 00793e2

Browse files
committed
fix view licence links
1 parent e629344 commit 00793e2

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

src/ServicePulse.Host/angular/app/modules/shell/js/directives/platformExpired.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<h1>Platform license expired</h1>
33
<p>Please update your license to continue using the Particular Service Platform</p>
44
<div class="action-toolbar">
5-
<a class="btn btn-default btn-primary" href="/configuration#license">View license details</a>
5+
<a class="btn btn-default btn-primary" href="/#/configuration">View license details</a>
66
</div>
77
</div>

src/ServicePulse.Host/angular/app/modules/shell/js/directives/platformTrialExpired.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ <h1>License expired</h1>
33
<p>To continue using the Particular Service Platform, please extend your license</p>
44
<div class="action-toolbar">
55
<a class="btn btn-default btn-primary" href="https://particular.net/extend-your-trial?p=servicepulse" target="_blank">Extend your license <i class="fa fa-external-link"></i></a>
6-
<a class="btn btn-default btn-secondary" href="/configuration#license">View license details</a>
6+
<a class="btn btn-default btn-secondary" href="/#/configuration">View license details</a>
77
</div>
88
</div>

src/ServicePulse.Host/angular/app/modules/shell/js/directives/upgradeProtectionExpired.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<h1>Platform license expired</h1>
33
<p>Your upgrade protection period has elapsed and your license is not valid for this version of ServicePulse.</p>
44
<div class="action-toolbar">
5-
<a class="btn btn-default btn-primary" href="/configuration#license">View license details</a>
5+
<a class="btn btn-default btn-primary" href="/#/configuration">View license details</a>
66
</div>
77
</div>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="license-warning">
22
<strong>Platform license expires soon</strong>
33
<div>Once the license expires you'll no longer be able to continue using the Particular Service Platform.</div>
4-
<a href="/configuration#license" class="btn btn-license-warning">View license details</a>
4+
<a href="/#/configuration" class="btn btn-license-warning">View license details</a>
55
</div>

src/ServicePulse.Host/angular/app/modules/shell/js/licensenotifier/trialexpiring.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
<a href="http://particular.net/extend-your-trial?p=servicepulse" class="btn btn-license-warning">
55
<i class="fa fa-external-link-alt"></i> Extend your license
66
</a>
7-
<a href="/configuration#license" class="btn btn-license-warning-light">View license details</a>
7+
<a href="/#/configuration" class="btn btn-license-warning-light">View license details</a>
88
</div>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="license-warning">
22
<strong>Upgrade protection expired</strong>
33
<div>Once upgrade protection expires, you'll no longer have access to support or new product versions</div>
4-
<a href="/configuration#license" class="btn btn-license-warning">View license details</a>
4+
<a href="/#/configuration" class="btn btn-license-warning">View license details</a>
55
</div>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="license-warning">
22
<strong>Upgrade protection expires soon</strong>
33
<div>Once upgrade protection expires, you'll no longer have access to support or new product versions</div>
4-
<a href="/configuration#license" class="btn btn-license-warning">View license details</a>
4+
<a href="/#/configuration" class="btn btn-license-warning">View license details</a>
55
</div>

src/ServicePulse.Host/vue/src/components/LicenseExpired.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { licenseStatus } from "./../composables/serviceLicense.js";
88
<h1>Platform license expired</h1>
99
<p>Please update your license to continue using the Particular Service Platform</p>
1010
<div class="action-toolbar">
11-
<a class="btn btn-default btn-primary" href="/configuration#license">View license details</a>
11+
<a class="btn btn-default btn-primary" href="#/configuration">View license details</a>
1212
</div>
1313
</div>
1414
</template>
@@ -18,7 +18,7 @@ import { licenseStatus } from "./../composables/serviceLicense.js";
1818
<p>To continue using the Particular Service Platform, please extend your license</p>
1919
<div class="action-toolbar">
2020
<a class="btn btn-default btn-primary" href="https://particular.net/extend-your-trial?p=servicepulse" target="_blank">Extend your license <i class="fa fa-external-link"></i></a>
21-
<a class="btn btn-default btn-secondary" href="/configuration#license">View license details</a>
21+
<a class="btn btn-default btn-secondary" href="#/configuration">View license details</a>
2222
</div>
2323
</div>
2424
</template>
@@ -27,7 +27,7 @@ import { licenseStatus } from "./../composables/serviceLicense.js";
2727
<h1>Platform license expired</h1>
2828
<p>Your upgrade protection period has elapsed and your license is not valid for this version of ServicePulse.</p>
2929
<div class="action-toolbar">
30-
<a class="btn btn-default btn-primary" href="/configuration#license">View license details</a>
30+
<a class="btn btn-default btn-primary" href="#/configuration">View license details</a>
3131
</div>
3232
</div>
3333
</template>

src/ServicePulse.Host/vue/src/composables/serviceLicense.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import { useGetDayDiffFromToday } from "./formatter";
33
import { useFetchFromServiceControl } from "./serviceServiceControlUrls";
44
import { useShowToast } from "./toast.js";
55

6-
const subscriptionExpiring = '<div class="license-warning"><strong>Platform license expires soon</strong><div>Once the license expires you\'ll no longer be able to continue using the Particular Service Platform.</div><a href="/configuration#license" class="btn btn-license-warning">View license details</a></div>';
7-
const upgradeProtectionExpiring = '<div class="license-warning"><strong>Upgrade protection expires soon</strong><div>Once upgrade protection expires, you\'ll no longer have access to support or new product versions</div><a href="/configuration#license" class="btn btn-license-warning">View license details</a></div>';
8-
const upgradeProtectionExpired = '<div class="license-warning"><strong>Upgrade protection expired</strong><div>Once upgrade protection expires, you\'ll no longer have access to support or new product versions</div><a href="/configuration#license" class="btn btn-license-warning">View license details</a></div>';
9-
const trialExpiring = '<div class="license-warning"><strong>Non-production development license expiring</strong><div>Your non-production development license will expire soon. To continue using the Particular Service Platform you\'ll need to extend your license.</div><a href="http://particular.net/extend-your-trial?p=servicepulse" class="btn btn-license-warning"><i class="fa fa-external-link-alt"></i> Extend your license</a><a href="/configuration#license" class="btn btn-license-warning-light">View license details</a></div>';
6+
const subscriptionExpiring = '<div class="license-warning"><strong>Platform license expires soon</strong><div>Once the license expires you\'ll no longer be able to continue using the Particular Service Platform.</div><a href="#/configuration" class="btn btn-license-warning">View license details</a></div>';
7+
const upgradeProtectionExpiring = '<div class="license-warning"><strong>Upgrade protection expires soon</strong><div>Once upgrade protection expires, you\'ll no longer have access to support or new product versions</div><a href="#/configuration" class="btn btn-license-warning">View license details</a></div>';
8+
const upgradeProtectionExpired = '<div class="license-warning"><strong>Upgrade protection expired</strong><div>Once upgrade protection expires, you\'ll no longer have access to support or new product versions</div><a href="#/configuration" class="btn btn-license-warning">View license details</a></div>';
9+
const trialExpiring = '<div class="license-warning"><strong>Non-production development license expiring</strong><div>Your non-production development license will expire soon. To continue using the Particular Service Platform you\'ll need to extend your license.</div><a href="http://particular.net/extend-your-trial?p=servicepulse" class="btn btn-license-warning"><i class="fa fa-external-link-alt"></i> Extend your license</a><a href="#/configuration" class="btn btn-license-warning-light">View license details</a></div>';
1010

1111
export var license = reactive({
1212
edition: "",

0 commit comments

Comments
 (0)