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 1b0f489f63..55b9e7f359 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') }}
@@ -177,7 +177,6 @@
.inner-content {
margin: 33px auto auto;
- padding: 0px 24px;
}
.item-notes {
@@ -233,8 +232,6 @@
}
.purchase-amount {
- margin-top: 24px;
-
.how-many-to-buy {
margin-bottom: 16px;
}
diff --git a/website/client/src/components/shops/quests/questDialogContent.vue b/website/client/src/components/shops/quests/questDialogContent.vue
index b5b57e3f6a..fb8c3efe50 100644
--- a/website/client/src/components/shops/quests/questDialogContent.vue
+++ b/website/client/src/components/shops/quests/questDialogContent.vue
@@ -2,7 +2,7 @@
{{ itemText }}
@@ -17,7 +17,7 @@
{{ $t('bossHP') + ':' }}
{{ quest.boss.hp }}
-
+
{{ $t('difficulty') + ':' }}
{{ limitedString }}
diff --git a/website/client/src/components/shops/quests/questRewards.vue b/website/client/src/components/shops/quests/questRewards.vue
index 9d7b185120..a4b82d48ff 100644
--- a/website/client/src/components/shops/quests/questRewards.vue
+++ b/website/client/src/components/shops/quests/questRewards.vue
@@ -1,7 +1,7 @@