diff --git a/website/client/src/components/shops/market/categoryRow.vue b/website/client/src/components/shops/market/categoryRow.vue
index eb4a79b6c4..92012294b6 100644
--- a/website/client/src/components/shops/market/categoryRow.vue
+++ b/website/client/src/components/shops/market/categoryRow.vue
@@ -11,6 +11,12 @@
{{ $t('maxBuyGems') }}
{{ item.text }}
+
+ {{ limitedString }}
+
({
...e,
diff --git a/website/client/src/components/shops/quests/index.vue b/website/client/src/components/shops/quests/index.vue
index 0dc12f46dc..88108abac9 100644
--- a/website/client/src/components/shops/quests/index.vue
+++ b/website/client/src/components/shops/quests/index.vue
@@ -299,7 +299,10 @@
{{ item.text }}
-
+
-
@@ -133,7 +131,7 @@ export default {
quest: {
type: Object,
},
- smallVersion: {
+ popoverVersion: {
type: Boolean,
default: false,
},
diff --git a/website/client/src/components/shops/shopItem.vue b/website/client/src/components/shops/shopItem.vue
index 7c6d9d68e1..6568dd502b 100644
--- a/website/client/src/components/shops/shopItem.vue
+++ b/website/client/src/components/shops/shopItem.vue
@@ -104,7 +104,7 @@
{{ limitedString }}
diff --git a/website/common/script/content/hatching-potions.js b/website/common/script/content/hatching-potions.js
index 02b6ab32b8..204cd66f35 100644
--- a/website/common/script/content/hatching-potions.js
+++ b/website/common/script/content/hatching-potions.js
@@ -3,6 +3,9 @@ import defaults from 'lodash/defaults';
import each from 'lodash/each';
import moment from 'moment';
import t from './translation';
+import {
+ EVENTS,
+} from './constants';
function hasQuestAchievementFunction (key) {
return user => user.achievements.quests
@@ -70,6 +73,7 @@ const premium = {
value: 2,
text: t('hatchingPotionShimmer'),
limited: true,
+ event: EVENTS.spring2020,
_addlNotes: t('eventAvailabilityReturning', {
availableDate: t('dateEndMarch'),
previousDate: t('marchYYYY', { year: 2018 }),
@@ -205,6 +209,7 @@ const premium = {
value: 2,
text: t('hatchingPotionCelestial'),
limited: true,
+ event: EVENTS.spring2020,
_addlNotes: t('eventAvailabilityReturning', {
availableDate: t('dateEndMarch'),
previousDate: t('marchYYYY', { year: 2019 }),
@@ -271,6 +276,7 @@ const premium = {
value: 2,
text: t('hatchingPotionBirchBark'),
limited: true,
+ event: EVENTS.spring2020,
canBuy () {
return moment().isBefore('2020-05-02');
},
@@ -284,6 +290,7 @@ const wacky = {
Veggie: {
text: t('hatchingPotionVeggie'),
limited: true,
+ event: EVENTS.spring2020,
_addlNotes: t('eventAvailabilityReturning', {
availableDate: t('dateEndMarch'),
previousDate: t('marchYYYY', { year: 2019 }),
diff --git a/website/common/script/libs/getItemInfo.js b/website/common/script/libs/getItemInfo.js
index b64d17e617..1bdf69439b 100644
--- a/website/common/script/libs/getItemInfo.js
+++ b/website/common/script/libs/getItemInfo.js
@@ -94,6 +94,7 @@ export default function getItemInfo (user, type, item, officialPinnedItems, lang
purchaseType: 'hatchingPotions',
path: item.wacky ? `wackyHatchingPotions.${item.key}` : `premiumHatchingPotions.${item.key}`,
pinType: 'premiumHatchingPotion',
+ event: item.event,
};
break;
case 'food':