diff --git a/website/client/src/components/shops/buyModal.vue b/website/client/src/components/shops/buyModal.vue index 0f26fd51ae..bd4403b458 100644 --- a/website/client/src/components/shops/buyModal.vue +++ b/website/client/src/components/shops/buyModal.vue @@ -715,6 +715,12 @@ export default { if (this.item.notes instanceof Function) { return this.item.notes(); } + if (this.item.items) { + if (this.item.items[0].notes instanceof Function) { + return this.item.items[0].notes(); + } + return this.item.items[0].notes; + } return this.item.notes; }, gemsLeft () { diff --git a/website/client/src/components/shops/quests/buyQuestModal.vue b/website/client/src/components/shops/quests/buyQuestModal.vue index 92a5f2d571..53763fecbe 100644 --- a/website/client/src/components/shops/quests/buyQuestModal.vue +++ b/website/client/src/components/shops/quests/buyQuestModal.vue @@ -28,6 +28,12 @@ :item="item" :abbreviated="true" /> +
+ {{ item.addlNotes }} +
{{ $t('howManyToBuy') }}
-
- {{ item.addlNotes }} -
{{ $t('purchaseGems') }} diff --git a/website/client/src/components/shops/quests/questDialogContent.vue b/website/client/src/components/shops/quests/questDialogContent.vue index f25e4de05d..a69da8a97f 100644 --- a/website/client/src/components/shops/quests/questDialogContent.vue +++ b/website/client/src/components/shops/quests/questDialogContent.vue @@ -18,7 +18,6 @@