Feature/add horizontal lines to separate delete actions in menus (#3805)

* Add horizontal lines to separate delete action

* Update changelog
pull/3815/head^2
Thomas Kaul 3 months ago committed by GitHub
parent e7f10ad4ad
commit e301dc5612
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Improved the usability of various action menus by introducing horizontal lines to separate the delete action
- Considered the users language in the link of the access table to share the portfolio
- Improved the language localization for German (`de`)

@ -69,6 +69,7 @@
<button mat-menu-item (click)="onCopyToClipboard(element.id)">
<ng-container i18n>Copy link to clipboard</ng-container>
</button>
<hr class="my-0" />
}
<button mat-menu-item (click)="onDeleteAccess(element.id)">
<ng-container i18n>Revoke</ng-container>

@ -278,6 +278,7 @@
<span i18n>Edit</span>
</span>
</button>
<hr class="m-0" />
<button
mat-menu-item
[disabled]="element.transactionCount > 0"

@ -175,6 +175,7 @@
<button mat-menu-item (click)="onExecuteJob(element.id)">
<ng-container i18n>Execute Job</ng-container>
</button>
<hr class="m-0" />
<button mat-menu-item (click)="onDeleteJob(element.id)">
<ng-container i18n>Delete Job</ng-container>
</button>

@ -197,6 +197,7 @@
<button mat-menu-item (click)="onGatherProfileData()">
<ng-container i18n>Gather Profile Data</ng-container>
</button>
<hr class="m-0" />
<button
mat-menu-item
[disabled]="!selection.hasValue()"
@ -230,6 +231,7 @@
<span i18n>Edit</span>
</span>
</a>
<hr class="m-0" />
<button
mat-menu-item
[disabled]="

@ -44,6 +44,7 @@
>
<ng-container i18n>Gather Profile Data</ng-container>
</button>
<hr class="m-0" />
<button
mat-menu-item
type="button"

@ -79,6 +79,7 @@
</span>
</a>
@if (customCurrencies.includes(exchangeRate.label2)) {
<hr class="m-0" />
<button
mat-menu-item
(click)="onDeleteCurrency(exchangeRate.label2)"

@ -92,6 +92,7 @@
<span i18n>Edit</span>
</span>
</button>
<hr class="m-0" />
<button
mat-menu-item
[disabled]="element.accountCount > 0"

@ -71,6 +71,7 @@
<span i18n>Edit</span>
</span>
</button>
<hr class="m-0" />
<button
mat-menu-item
[disabled]="element.activityCount > 0"

@ -218,6 +218,7 @@
<span i18n>Impersonate User</span>
</span>
</button>
<hr class="m-0" />
}
<button
mat-menu-item

@ -55,6 +55,7 @@
</span>
</button>
}
<hr class="m-0" />
<button
class="align-items-center d-flex"
mat-menu-item
@ -445,6 +446,7 @@
<span i18n>Export Draft as ICS</span>
</span>
</button>
<hr class="m-0" />
<button
mat-menu-item
[disabled]="!hasPermissionToDeleteActivity"

Loading…
Cancel
Save