Skip to content

Commit

Permalink
Update receipt.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
grctest authored and sschiessl-bcp committed Oct 5, 2023
1 parent 36fa580 commit 3e990b2
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/components/receipt.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,12 @@
resultData.value = JSON.stringify(
result.value[0].trx.operation_results[currentPageValue], undefined, 4
);
resultID.value = result.value[currentPageValue].id;
resultBlockNum.value = result.value[currentPageValue].block_num;
resultTrxNum.value = result.value[currentPageValue].trx_num;
resultExpiration.value = result.value[currentPageValue].trx.expiration;
resultSignatures.value = result.value[currentPageValue].trx.signatures;
resultID.value = result.value[0].id;
resultBlockNum.value = result.value[0].block_num;
resultTrxNum.value = result.value[0].trx_num;
resultExpiration.value = result.value[0].trx.expiration;
resultSignatures.value = result.value[0].trx.signatures;
}
});
Expand Down

0 comments on commit 3e990b2

Please sign in to comment.