Browse Source
Bugfix/fix state of delete account button (#911)
* Fix disable state
* Update changelog
pull/912/head^2
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
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/accounts-table/accounts-table.component.html
|
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the state of the account delete button (disable if account contains activities) |
|
|
|
- Fixed an issue in the activities filter component (typing a search term) |
|
|
|
|
|
|
|
## 1.147.0 - 10.05.2022 |
|
|
|
|
|
@ -200,7 +200,7 @@ |
|
|
|
</button> |
|
|
|
<button |
|
|
|
mat-menu-item |
|
|
|
[disabled]="element.isDefault || element.Order?.length > 0" |
|
|
|
[disabled]="element.isDefault || element.transactionCount > 0" |
|
|
|
(click)="onDeleteAccount(element.id)" |
|
|
|
> |
|
|
|
<ion-icon class="mr-2" name="trash-outline"></ion-icon> |
|
|
|