Skip to content

Commit

Permalink
Fix missing key for delete history modal in income chart
Browse files Browse the repository at this point in the history
  • Loading branch information
igorshelkovenkov committed Mar 26, 2022
1 parent e537591 commit f6d1ecb
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"email": "[email protected]",
"url": "https://www.defichain-income.com"
},
"version": "8.15.3",
"version": "8.15.4",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "DefiChain-Income",
"version": "8.15.3"
"version": "8.15.4"
},
"build": {
"distDir": "../dist/defichain-income",
Expand Down
2 changes: 1 addition & 1 deletion src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -1570,7 +1570,7 @@ <h3 class="text-lg font-bold mb-2">Total Income per Month History</h3>
</div>
<br>
<div class="hidden md:inline-block h-full my-2 items-center m">
<app-history-modal [history]='userHistory'></app-history-modal>
<app-history-modal [history]='userHistory' [key]='loggedInAuth'></app-history-modal>
</div>
<br>
<apx-chart *ngIf='isIncomeChartOn && isUserHistoryForIncome()'
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const environment = {
mamon_account: 'https://sync.defichain-masternode-monitor.com/v1/KEY/masternodes',
mamon_account_node: 'https://api.defichain-masternode-monitor.com/v1/masternodes/info/',
burninfo: 'https://api.mydeficha.in/v1/getburninfo/',
version: '8.15.3',
version: '8.15.4',
bittrex: 'https://api.bittrex.com/v3/currencies/DFI',
kucoin: 'https://api.kucoin.com/api/v1/currencies/DFI',
graphql: 'https://graphql.defichain-income.com/graphql',
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const environment = {
mamon_account: 'https://sync.defichain-masternode-monitor.com/v1/KEY/masternodes',
mamon_account_node: 'https://api.defichain-masternode-monitor.com/v1/masternodes/info/',
burninfo: 'https://api.mydeficha.in/v1/getburninfo/',
version: '8.15.3',
version: '8.15.4',
graphql: 'https://graphql.defichain-income.com/graphql',
// Matomo
// No tracking for local -> wrong id
Expand Down
5 changes: 5 additions & 0 deletions src/interface/Changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ export class Changelog {

this.logs = new Array<Log>();

this.log = new Log();
this.log.version = '8.15.4 - 26.3.2022';
this.log.comment = 'Fix missing key for delete history modal in income chart';
this.logs.push(this.log);

this.log = new Log();
this.log.version = '8.15.3 - 26.3.2022';
this.log.comment = 'Fix not automated release';
Expand Down

0 comments on commit f6d1ecb

Please sign in to comment.