|
|
@ -7,7 +7,8 @@ |
|
|
|
interest: activityType === 'INTEREST', |
|
|
|
item: activityType === 'ITEM', |
|
|
|
liability: activityType === 'LIABILITY', |
|
|
|
sell: activityType === 'SELL' |
|
|
|
sell: activityType === 'SELL', |
|
|
|
stake: activityType === 'STAKE' |
|
|
|
}" |
|
|
|
> |
|
|
|
<ion-icon |
|
|
@ -15,7 +16,11 @@ |
|
|
|
name="arrow-up-circle-outline" |
|
|
|
></ion-icon> |
|
|
|
<ion-icon |
|
|
|
*ngIf="activityType === 'DIVIDEND' || activityType === 'INTEREST'" |
|
|
|
*ngIf=" |
|
|
|
activityType === 'DIVIDEND' || |
|
|
|
activityType === 'INTEREST' || |
|
|
|
activityType === 'STAKE' |
|
|
|
" |
|
|
|
name="add-circle-outline" |
|
|
|
></ion-icon> |
|
|
|
<ion-icon *ngIf="activityType === 'FEE'" name="hammer-outline"></ion-icon> |
|
|
|