Browse Source

Bugfix/fix links in subscription interstitial dialog (#1696)

* Fix links

* Update changelog
pull/1691/head^2
Thomas Kaul 2 years ago
committed by GitHub
parent
commit
d6b71e6314
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 7
      apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html

1
CHANGELOG.md

@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- Fixed an issue on the landing page caused by the global heat map of subscribers - Fixed an issue on the landing page caused by the global heat map of subscribers
- Fixed the links in the interstitial for the subscription
## 1.233.0 - 2023-02-09 ## 1.233.0 - 2023-02-09

7
apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html

@ -1,6 +1,9 @@
<h1 class="align-items-center d-flex" mat-dialog-title> <h1 class="align-items-center d-flex" mat-dialog-title>
<span>Ghostfolio Premium</span> <span>Ghostfolio Premium</span>
<gf-premium-indicator class="ml-1"></gf-premium-indicator> <gf-premium-indicator
class="ml-1"
[enableLink]="false"
></gf-premium-indicator>
</h1> </h1>
<div class="flex-grow-1" mat-dialog-content> <div class="flex-grow-1" mat-dialog-content>
<p class="h5" i18n> <p class="h5" i18n>
@ -28,7 +31,7 @@
</li> </li>
<li class="align-items-center d-flex mb-1"> <li class="align-items-center d-flex mb-1">
<ion-icon class="mr-1" name="checkmark-circle-outline"></ion-icon> <ion-icon class="mr-1" name="checkmark-circle-outline"></ion-icon>
<a i18n [routerLink]="['/features']">and more Features...</a> <span i18n>and more Features...</span>
</li> </li>
</ul> </ul>
<p>Refine your personal investment strategy now.</p> <p>Refine your personal investment strategy now.</p>

Loading…
Cancel
Save