From 545b052c104ef75c5fdcec7d58aee78e5eb45061 Mon Sep 17 00:00:00 2001 From: Keith Holliday Date: Fri, 22 Dec 2017 10:23:55 -0600 Subject: [PATCH] Added fix for quantity confirmation (#9735) --- website/client/components/shops/buyModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/client/components/shops/buyModal.vue b/website/client/components/shops/buyModal.vue index 9dcca5bbbe..ab0dce45e2 100644 --- a/website/client/components/shops/buyModal.vue +++ b/website/client/components/shops/buyModal.vue @@ -374,7 +374,7 @@ }, buyItem () { if (this.item.currency === 'gems' && - !confirm(this.$t('purchaseFor', { cost: this.item.value }))) { + !confirm(this.$t('purchaseFor', { cost: this.item.value * this.selectedAmountToBuy }))) { return; }