Browse Source
Bugfix/fix pricing link in premium indicator component (#4525)
* Fix link to pricing page
* Update changelog
pull/4530/head
Thomas Kaul
2 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
7 additions and
1 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/premium-indicator/premium-indicator.component.html
-
libs/ui/src/lib/premium-indicator/premium-indicator.component.ts
|
|
@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
- Upgraded `eslint` dependencies |
|
|
|
- Upgraded `Nx` from version `20.6.4` to `20.7.1` |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the link to the pricing page in the premium indicator component |
|
|
|
|
|
|
|
## 2.150.0 - 2025-04-05 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -2,6 +2,6 @@ |
|
|
|
class="align-items-center d-flex" |
|
|
|
title="Upgrade to Ghostfolio Premium" |
|
|
|
[ngStyle]="{ 'pointer-events': enableLink ? 'initial' : 'none' }" |
|
|
|
[routerLink]="['/pricing']" |
|
|
|
[routerLink]="routerLinkPricing" |
|
|
|
><ion-icon class="text-muted" name="diamond-outline" |
|
|
|
/></a> |
|
|
|
|
|
@ -17,4 +17,6 @@ import { RouterModule } from '@angular/router'; |
|
|
|
}) |
|
|
|
export class GfPremiumIndicatorComponent { |
|
|
|
@Input() enableLink = true; |
|
|
|
|
|
|
|
public routerLinkPricing = ['/' + $localize`:snake-case:pricing`]; |
|
|
|
} |
|
|
|