diff --git a/shared/domain/activityField/groupShopField.ts b/shared/domain/activityField/groupShopField.ts index cabfdfd46..269493a6c 100644 --- a/shared/domain/activityField/groupShopField.ts +++ b/shared/domain/activityField/groupShopField.ts @@ -81,6 +81,7 @@ class GroupShopItem { if(item.discount && item.discount.length > 0) { for(let discount of item.discount) { this.discount.push(new GroupShopDiscount(item.price, discount)); + if(!this.curDiscount) this.curDiscount = new GroupShopDiscount(item.price, discount); } } }