Browse Source
Bugfix/fix logout url in development (#1715)
* Add language
* Update changelog
pull/1720/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/app.component.ts
|
|
@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Fixed an issue in the data gathering service (do not skip `MANUAL` data source) |
|
|
|
- Fixed the buying power calculation if no emergency fund is set but an activity is tagged as _Emergency Fund_ |
|
|
|
- Fixed the url on logout during the local development |
|
|
|
|
|
|
|
## 1.235.0 - 2023-02-16 |
|
|
|
|
|
|
|
|
|
@ -104,7 +104,7 @@ export class AppComponent implements OnDestroy, OnInit { |
|
|
|
this.tokenStorageService.signOut(); |
|
|
|
this.userService.remove(); |
|
|
|
|
|
|
|
document.location.href = '/'; |
|
|
|
document.location.href = `/${document.documentElement.lang}`; |
|
|
|
} |
|
|
|
|
|
|
|
public ngOnDestroy() { |
|
|
|