diff --git a/src/components/Checkout/DonationItem.vue b/src/components/Checkout/DonationItem.vue index 6e1ff5e77d..403a1f2bc0 100644 --- a/src/components/Checkout/DonationItem.vue +++ b/src/components/Checkout/DonationItem.vue @@ -891,7 +891,7 @@ export default { } const donationProperty = this.donation.isUserEdited ? 'user-set' : 'kiva-set'; - this.$kvTrackEvent('basket', 'show', 'tip-donation-amount', donationProperty, this.donation.price); + this.$kvTrackEvent('basket', 'show', 'tip-donation-amount', donationProperty, this.donation.price * 100); this.setupContentfulContent(); }, watch: { diff --git a/src/components/Checkout/OrderTotals.vue b/src/components/Checkout/OrderTotals.vue index ebe448482b..2c61a3b5a4 100644 --- a/src/components/Checkout/OrderTotals.vue +++ b/src/components/Checkout/OrderTotals.vue @@ -443,11 +443,11 @@ export default { }, trackBasketInfoEvents() { const creditProperty = !this.showApplyKivaCredit ? 'applied' : 'not-applied'; - const creditValue = !this.showApplyKivaCredit ? this.totals.kivaCreditAppliedTotal - : this.totals.creditAvailableTotal; + const creditValue = 100 * (!this.showApplyKivaCredit ? this.totals.kivaCreditAppliedTotal + : this.totals.creditAvailableTotal); this.$kvTrackEvent('basket', 'show', 'kiva-credit', creditProperty, creditValue); - this.$kvTrackEvent('basket', 'show', 'loans', null, this.totals.loanReservationTotal); - this.$kvTrackEvent('basket', 'show', 'basket-size', null, this.totals.itemTotal); + this.$kvTrackEvent('basket', 'show', 'loans', null, this.totals.loanReservationTotal * 100); + this.$kvTrackEvent('basket', 'show', 'basket-size', null, this.totals.itemTotal * 100); } }, apollo: {