Skip to content

Commit

Permalink
bump version to 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
serderovsh committed Feb 13, 2019
1 parent ee04180 commit c89877b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion iex-wallet.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "iEXWallet",
"version": "1.1.2"
"version": "1.1.3"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "iexwallet",
"description": "Secure Tron Wallet",
"version": "1.1.2",
"version": "1.1.3",
"author": {
"name": "Shamsudin Serderov",
"email": "[email protected]"
Expand Down
6 changes: 2 additions & 4 deletions src/app/modules/wallet/pages/wallet/wallet.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,10 @@
<span class="amount" *ngSwitchCase="11">{{ tx['contractData']['frozen_balance'] / 1e6 }}</span>
<span class="amount" *ngSwitchCase="12">~</span>
<span class="amount" *ngSwitchCase="31">~</span>
<span class="amount" *ngSwitchDefault>{{ tx['contractData']['amount'] | formatCurrency:'TRX':'':false }}</span>
<span class="amount" *ngSwitchDefault>{{ tx['contractData']['amount'] }}</span>
</ng-container>
<!-- Get contact code -->
<span class="unit" *ngIf="tx['contractData'] && tx.contractType == 4">
TP
</span>
<span class="unit" *ngIf="tx['contractData'] && tx.contractType == 4">TP</span>
<span class="unit" *ngIf="tx['contractData'] && ![4, 12, 31].includes(tx.contractType)">
{{tx['contractData']['asset_name'] || 'TRX'}}
</span>
Expand Down
2 changes: 1 addition & 1 deletion src/assets/appConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"gitReleases": "https://github.com/iexbase/iex-wallet/releases",
"gitHubRepoUrl": "git://github.com/iexbase/iex-wallet.git",
"gitHubRepoBugs": "https://github.com/iexbase/iex-wallet/issues",
"version": "1.1.2"
"version": "1.1.3"
}
1 change: 1 addition & 0 deletions src/providers/wallet/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1071,6 +1071,7 @@ export class WalletProvider {
res = _.filter(historyTx['data'], (tx: any) => {
// If the token is an integer, then convert it to the name of the token
if (Number(tx['contractData']['asset_name'])) {

const filter = this.tron.getListTokens().filter(
v => v.id === tx['contractData']['asset_name']
);
Expand Down

0 comments on commit c89877b

Please sign in to comment.