Added fix for quantity confirmation (#9735)

This commit is contained in:
Keith Holliday
2017-12-22 10:23:55 -06:00
committed by GitHub
parent 85b861c4a9
commit 545b052c10
+1 -1
View File
@@ -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;
}