Skip to content

Commit

Permalink
PAYOSWSXP-104: refund: fix not correct display of already refunded am…
Browse files Browse the repository at this point in the history
…ounts (typo)
  • Loading branch information
rommelfreddy committed Oct 27, 2023
1 parent 1a2ce10 commit b23c781
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default {
refundedAmount() {
if (!this.transaction.extensions
|| !this.transaction.extensions.payonePaymentOrderTransactionData
|| this.transaction.extensions.payonePaymentOrderTransactionData.refundedAmount) {
|| !this.transaction.extensions.payonePaymentOrderTransactionData.refundedAmount) {
return 0;
}

Expand Down
Loading

0 comments on commit b23c781

Please sign in to comment.