Browse Source

Feature/improve icon of View Holding menu item in activities table (#5881)

* Improve icon

* Update changelog
pull/5650/head^2
Thomas Kaul 3 days ago
committed by GitHub
parent
commit
6177ec0ec5
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      libs/ui/src/lib/activities-table/activities-table.component.html
  3. 8
      libs/ui/src/lib/activities-table/activities-table.component.ts

1
CHANGELOG.md

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Improved the icon of the _View Holding_ menu item in the activities table
- Refreshed the cryptocurrencies list - Refreshed the cryptocurrencies list
## 2.213.0 - 2025-10-30 ## 2.213.0 - 2025-10-30

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

@ -440,7 +440,7 @@
@if (canClickActivity(element)) { @if (canClickActivity(element)) {
<button mat-menu-item (click)="onClickActivity(element)"> <button mat-menu-item (click)="onClickActivity(element)">
<span class="align-items-center d-flex"> <span class="align-items-center d-flex">
<ion-icon class="mr-2" name="wallet-outline" /> <ion-icon class="mr-2" name="tablet-landscape-outline" />
<span i18n>View Holding</span> <span i18n>View Holding</span>
</span> </span>
</button> </button>

8
libs/ui/src/lib/activities-table/activities-table.component.ts

@ -56,8 +56,8 @@ import {
documentTextOutline, documentTextOutline,
ellipsisHorizontal, ellipsisHorizontal,
ellipsisVertical, ellipsisVertical,
trashOutline, tabletLandscapeOutline,
walletOutline trashOutline
} from 'ionicons/icons'; } from 'ionicons/icons';
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
import { Subject, Subscription, takeUntil } from 'rxjs'; import { Subject, Subscription, takeUntil } from 'rxjs';
@ -154,8 +154,8 @@ export class GfActivitiesTableComponent
documentTextOutline, documentTextOutline,
ellipsisHorizontal, ellipsisHorizontal,
ellipsisVertical, ellipsisVertical,
trashOutline, tabletLandscapeOutline,
walletOutline trashOutline
}); });
} }

Loading…
Cancel
Save