Skip to content

Commit

Permalink
Open Widget Transaction Rate show fix
Browse files Browse the repository at this point in the history
  • Loading branch information
physcom committed Jul 31, 2023
1 parent 4beed4d commit b6407d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion payment-chooser/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function loadTransactionData(result) {
let td_3 = document.createElement('td');
td_3.innerHTML = `${trx.amount}`;
let td_4 = document.createElement('td');
if (blockchain.native)
if (trx.native)
td_4.innerHTML = `${trx.rate}` + ` ${currency}`;
else
td_4.innerHTML = `${trx.token}`;
Expand Down

0 comments on commit b6407d1

Please sign in to comment.