Browse Source
Feature/improve icon of View Holding menu item in activities table (#5881)
* Improve icon
* Update changelog
pull/5848/head^2
Thomas Kaul
2 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
6 additions and
5 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/activities-table/activities-table.component.html
-
libs/ui/src/lib/activities-table/activities-table.component.ts
|
|
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Improved the icon of the _View Holding_ menu item in the activities table |
|
|
|
- Refreshed the cryptocurrencies list |
|
|
|
|
|
|
|
## 2.213.0 - 2025-10-30 |
|
|
|
|
|
|
|
@ -440,7 +440,7 @@ |
|
|
|
@if (canClickActivity(element)) { |
|
|
|
<button mat-menu-item (click)="onClickActivity(element)"> |
|
|
|
<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> |
|
|
|
</button> |
|
|
|
|
|
|
|
@ -56,8 +56,8 @@ import { |
|
|
|
documentTextOutline, |
|
|
|
ellipsisHorizontal, |
|
|
|
ellipsisVertical, |
|
|
|
trashOutline, |
|
|
|
walletOutline |
|
|
|
tabletLandscapeOutline, |
|
|
|
trashOutline |
|
|
|
} from 'ionicons/icons'; |
|
|
|
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; |
|
|
|
import { Subject, Subscription, takeUntil } from 'rxjs'; |
|
|
|
@ -154,8 +154,8 @@ export class GfActivitiesTableComponent |
|
|
|
documentTextOutline, |
|
|
|
ellipsisHorizontal, |
|
|
|
ellipsisVertical, |
|
|
|
trashOutline, |
|
|
|
walletOutline |
|
|
|
tabletLandscapeOutline, |
|
|
|
trashOutline |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|