Browse Source
Merge branch 'main' into feature/upgrade-prisma-to-version-4.7.1
pull/1493/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
6 additions and
2 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
- Upgraded `prisma` from version `4.6.1` to `4.7.1` |
|
|
- Upgraded `prisma` from version `4.6.1` to `4.7.1` |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Fixed the activities sorting in the account detail dialog |
|
|
|
|
|
|
|
|
## 1.216.0 - 2022-12-03 |
|
|
## 1.216.0 - 2022-12-03 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
@ -30,7 +30,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div *ngIf="orders?.length > 0" class="row"> |
|
|
<div class="row" [ngClass]="{ 'd-none': !orders?.length }"> |
|
|
<div class="col mb-3"> |
|
|
<div class="col mb-3"> |
|
|
<div class="h5 mb-0" i18n>Activities</div> |
|
|
<div class="h5 mb-0" i18n>Activities</div> |
|
|
<gf-activities-table |
|
|
<gf-activities-table |
|
@ -38,7 +38,7 @@ |
|
|
[baseCurrency]="user?.settings?.baseCurrency" |
|
|
[baseCurrency]="user?.settings?.baseCurrency" |
|
|
[deviceType]="data.deviceType" |
|
|
[deviceType]="data.deviceType" |
|
|
[hasPermissionToCreateActivity]="false" |
|
|
[hasPermissionToCreateActivity]="false" |
|
|
[hasPermissionToExportActivities]="!hasImpersonationId" |
|
|
[hasPermissionToExportActivities]="true" |
|
|
[hasPermissionToFilter]="false" |
|
|
[hasPermissionToFilter]="false" |
|
|
[hasPermissionToImportActivities]="false" |
|
|
[hasPermissionToImportActivities]="false" |
|
|
[hasPermissionToOpenDetails]="false" |
|
|
[hasPermissionToOpenDetails]="false" |
|
|