Browse Source
Bugfix/fix link on features page (#2398)
* Fix link
* Update changelog
pull/2400/head
Thomas Kaul
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
7 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/features/features-page.component.ts
|
|
@ -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 a link on the features page |
|
|
|
|
|
|
|
## 2.6.0 - 2023-09-26 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -15,6 +15,7 @@ export class FeaturesPageComponent implements OnDestroy { |
|
|
|
public hasPermissionForSubscription: boolean; |
|
|
|
public info: InfoItem; |
|
|
|
public routerLinkRegister = ['/' + $localize`register`]; |
|
|
|
public routerLinkResources = ['/' + $localize`resources`]; |
|
|
|
public user: User; |
|
|
|
|
|
|
|
private unsubscribeSubject = new Subject<void>(); |
|
|
|