Client/negue multiplefixes6 (#9000)

* use store action to purchase gem by gold

* only show party members in header if enough width available / use overflow hidden

* fix featuredItems buyModals

* fix special items listing - open modal on special spells

* don't open the buymodal on locked items

* fix lint
This commit is contained in:
negue
2017-08-29 02:17:45 +02:00
committed by Keith Holliday
parent 170f901d86
commit 515fd62dd8
8 changed files with 71 additions and 20 deletions

View File

@@ -322,7 +322,9 @@ export default {
}
},
openBuyDialog (rewardItem) {
this.$emit('openBuyDialog', rewardItem);
if (rewardItem.purchaseType !== 'gear' || !rewardItem.locked) {
this.$emit('openBuyDialog', rewardItem);
}
},
},
};