Feature/change activities icons (#1463)

* Improve icons

* Update changelog
pull/1464/head
Thomas Kaul 2 years ago committed by GitHub
parent be14458437
commit b0d708fb82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the support for the `MANUAL` data source
- Improved the _Activities_ tab icon
- Improved the _Activities_ icons for `BUY`, `DIVIDEND` and `SELL`
- Upgraded `prisma` from version `4.4.0` to `4.6.1`
- Upgraded `yahoo-finance2` from version `2.3.6` to `2.3.10`

@ -67,7 +67,7 @@
>
<ion-icon
*ngIf="element.type === 'BUY' || element.type === 'DIVIDEND'"
name="arrow-forward-circle-outline"
name="arrow-up-circle-outline"
></ion-icon>
<ion-icon
*ngIf="element.type === 'ITEM'"
@ -75,7 +75,7 @@
></ion-icon>
<ion-icon
*ngIf="element.type === 'SELL'"
name="arrow-back-circle-outline"
name="arrow-down-circle-outline"
></ion-icon>
<span class="d-none d-lg-block mx-1">{{ element.type }}</span>
</div>

Loading…
Cancel
Save