Thomas
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
10 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/header/header.component.html
-
apps/client/src/app/pages/about/about-page.component.ts
|
|
@ -5,6 +5,13 @@ 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 an issue in the header with outdated data |
|
|
|
- Fixed an issue on the about page with outdated data |
|
|
|
|
|
|
|
## 0.91.0 - 25.04.2021 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -150,7 +150,7 @@ |
|
|
|
>Account</a |
|
|
|
> |
|
|
|
<a |
|
|
|
*ngIf="hasPermissionForAdminControl" |
|
|
|
*ngIf="hasPermissionToAccessAdminControl" |
|
|
|
class="d-block d-sm-none" |
|
|
|
[routerLink]="['/admin']" |
|
|
|
i18n |
|
|
|
|
|
@ -42,6 +42,8 @@ export class AboutPageComponent implements OnInit { |
|
|
|
info.globalPermissions, |
|
|
|
permissions.enableSubscription |
|
|
|
); |
|
|
|
|
|
|
|
this.cd.markForCheck(); |
|
|
|
}); |
|
|
|
|
|
|
|
this.isLoggedIn = !!this.tokenStorageService.getToken(); |
|
|
|