Skip to content

Commit

Permalink
Merge pull request #94 from NazarUsov/testnet/issues
Browse files Browse the repository at this point in the history
Testnet - Issue 430
  • Loading branch information
sowle authored Nov 14, 2023
2 parents 5a87cb4 + 4998844 commit ee48450
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html_source/src/app/store/pagination/pagination.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class PaginationService {
this.variables.currentWallet.total_history_item = data.total_history_items;
this.variables.currentWallet.prepareHistory(data.history);
if (this.variables.currentWallet.currentPage === 1 && data.unconfirmed) {
this.variables.currentWallet.prepareHistory(data.unconfirmed);
this.variables.currentWallet.prepareHistory(data.unconfirmed.sort((a, b) => a.timestamp - b.timestamp));
}
}
});
Expand Down

0 comments on commit ee48450

Please sign in to comment.