Browse Source
Bugfix/fix edit of activity in lazy loaded activities table (#2749)
* Fix edit
* Update changelog
pull/2744/head^2
Thomas Kaul
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
10 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/portfolio/activities/activities-page.component.ts
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Improved the language localization for Türkçe (`tr`) |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the edit of activity in the lazy-loaded activities table on the portfolio activities page (experimental) |
|
|
|
|
|
|
|
## 2.30.0 - 2023-12-12 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -72,6 +72,12 @@ export class ActivitiesPageComponent implements OnDestroy, OnInit { |
|
|
|
return id === params['activityId']; |
|
|
|
}); |
|
|
|
|
|
|
|
this.openUpdateActivityDialog(activity); |
|
|
|
} else if (this.dataSource) { |
|
|
|
const activity = this.dataSource.data.find(({ id }) => { |
|
|
|
return id === params['activityId']; |
|
|
|
}); |
|
|
|
|
|
|
|
this.openUpdateActivityDialog(activity); |
|
|
|
} else { |
|
|
|
this.router.navigate(['.'], { relativeTo: this.route }); |
|
|
|