Browse Source

Bugfix/fix word wrap in various menus (#5691)

* Fix word wrap

* Update changelog
pull/5707/head
Thomas Kaul 1 week ago
committed by GitHub
parent
commit
5bb22e840d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      CHANGELOG.md
  2. 8
      apps/client/src/app/components/access-table/access-table.component.html
  3. 6
      apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html
  4. 2
      libs/ui/src/lib/activities-table/activities-table.component.html

6
CHANGELOG.md

@ -20,6 +20,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Extended the _Storybook_ stories of the accounts table component by a loading state story
- Refactored the auth page to standalone
### Fixed
- Fixed the word wrap in the menu of the access table component
- Fixed the word wrap in the menu of the activities table component
- Fixed the word wrap in the menu of the asset profile details dialog in the admin control panel
## 2.206.0 - 2025-10-04
### Changed

8
apps/client/src/app/components/access-table/access-table.component.html

@ -59,12 +59,16 @@
<button
class="mx-1 no-min-width px-2"
mat-button
[matMenuTriggerFor]="transactionMenu"
[matMenuTriggerFor]="accessActionsMenu"
(click)="$event.stopPropagation()"
>
<ion-icon name="ellipsis-horizontal" />
</button>
<mat-menu #transactionMenu="matMenu" xPosition="before">
<mat-menu
#accessActionsMenu="matMenu"
class="no-max-width"
xPosition="before"
>
@if (user?.settings?.isExperimentalFeatures) {
<button mat-menu-item (click)="onUpdateAccess(element.id)">
<span class="align-items-center d-flex">

6
apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html

@ -12,7 +12,11 @@
>
<ion-icon name="ellipsis-vertical" />
</button>
<mat-menu #assetProfileActionsMenu="matMenu" xPosition="before">
<mat-menu
#assetProfileActionsMenu="matMenu"
class="no-max-width"
xPosition="before"
>
<button mat-menu-item type="button" (click)="initialize()">
<ng-container i18n>Refresh</ng-container>
</button>

2
libs/ui/src/lib/activities-table/activities-table.component.html

@ -18,7 +18,7 @@
<ion-icon name="ellipsis-vertical" />
</button>
}
<mat-menu #activitiesMenu="matMenu" xPosition="before">
<mat-menu #activitiesMenu="matMenu" class="no-max-width" xPosition="before">
<button
mat-menu-item
[disabled]="dataSource?.data.length === 0"

Loading…
Cancel
Save