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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
}