Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 530b439

Browse files
committed
add to transaction dispute close
1 parent c01ff06 commit 530b439

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/views/transactionModalVw.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -730,9 +730,9 @@ module.exports = baseVw.extend({
730730
updatedVal = 1;
731731
targ1.val(100);
732732
}
733-
targ2.text((updatedVal * adjustedTotal).toFixed(8));
733+
targ2.text(app.intlNumFormat(updatedVal * adjustedTotal),8);
734734
targ3.val(100 - updatedVal * 100);
735-
targ4.text((adjustedTotal - updatedVal * adjustedTotal).toFixed(8));
735+
targ4.text(app.intlNumFormat(adjustedTotal - updatedVal * adjustedTotal,8));
736736
},
737737

738738
closeOrderForm: function(e){

0 commit comments

Comments
 (0)