Browse Source

Merge branch 'main' into feature/improve-language-localization-for-de-20240128

pull/2940/head
Thomas Kaul 2 years ago
committed by GitHub
parent
commit
0c2fc80a48
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 4
      libs/ui/src/lib/assistant/assistant.component.ts

1
CHANGELOG.md

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Improved the tag selector to only show used tags in the assistant (experimental)
- Improved the language localization for German (`de`)
### Fixed

4
libs/ui/src/lib/assistant/assistant.component.ts

@ -136,10 +136,8 @@ export class AssistantComponent implements OnChanges, OnDestroy, OnInit {
) {}
public ngOnInit() {
const { tags } = this.dataService.fetchInfo();
this.accounts = this.user?.accounts;
this.tags = tags.map(({ id, name }) => {
this.tags = this.user?.tags.map(({ id, name }) => {
return {
id,
name: translate(name)

Loading…
Cancel
Save