Bugfix/considered language of user settings on login with Security Token (#3828)
* Consider language of user settings on login with Security Token * Update changelog
This commit is contained in:
parent
f5c0d803a0
commit
5f4cbe3af7
@ -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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Considered the language of the user settings on login with _Security Token_
|
||||||
|
|
||||||
## 2.114.0 - 2024-10-10
|
## 2.114.0 - 2024-10-10
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -261,7 +261,18 @@ export class HeaderComponent implements OnChanges {
|
|||||||
this.settingsStorageService.getSetting(KEY_STAY_SIGNED_IN) === 'true'
|
this.settingsStorageService.getSetting(KEY_STAY_SIGNED_IN) === 'true'
|
||||||
);
|
);
|
||||||
|
|
||||||
this.router.navigate(['/']);
|
this.userService
|
||||||
|
.get()
|
||||||
|
.pipe(takeUntil(this.unsubscribeSubject))
|
||||||
|
.subscribe((user) => {
|
||||||
|
const userLanguage = user?.settings?.language;
|
||||||
|
|
||||||
|
if (userLanguage && document.documentElement.lang !== userLanguage) {
|
||||||
|
window.location.href = `../${userLanguage}`;
|
||||||
|
} else {
|
||||||
|
this.router.navigate(['/']);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public ngOnDestroy() {
|
public ngOnDestroy() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user