Browse Source

Merge branch 'main' into feature/extract-locales-20230114

pull/1607/head
Thomas Kaul 3 years ago
committed by GitHub
parent
commit
e3cd7e3ef2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 2
      apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts

4
CHANGELOG.md

@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the language localization for German (`de`) - Improved the language localization for German (`de`)
### Fixed
- Fixed the create or edit activity dialog
## 1.227.0 - 2023-01-14 ## 1.227.0 - 2023-01-14
### Added ### Added

2
apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts

@ -120,7 +120,7 @@ export class CreateOrUpdateActivityDialog implements OnDestroy {
Validators.required Validators.required
], ],
tags: [ tags: [
this.data.activity?.tags.map(({ id, name }) => { this.data.activity?.tags?.map(({ id, name }) => {
return { return {
id, id,
name: translate(name) name: translate(name)

Loading…
Cancel
Save