mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-11 14:39:37 +00:00
Added fix for quantity confirmation (#9735)
This commit is contained in:
parent
85b861c4a9
commit
545b052c10
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue