Browse Source

Fix pricing page link (#90)

pull/91/head
Thomas 4 years ago
committed by GitHub
parent
commit
fada347aa5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      CHANGELOG.md
  2. 8
      apps/client/src/app/components/header/header.component.html

6
CHANGELOG.md

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Fixed
- Fixed the link to the pricing page
## 1.2.1 - 14.05.2021
### Changed

8
apps/client/src/app/components/header/header.component.html

@ -227,6 +227,14 @@
<gf-logo></gf-logo>
</a>
<span class="spacer"></span>
<a
*ngIf="hasPermissionForSubscription"
i18n
mat-flat-button
[color]="currentRoute?.startsWith('pricing') ? 'primary' : null"
[routerLink]="['/pricing']"
>Pricing</a
>
<a
class="d-none d-sm-block mx-1"
i18n

Loading…
Cancel
Save