-
-
{{ $t('collect') + ':' }}
-
-
- {{ collect.count }} {{ getCollectText(collect) }}
-
-
-
-
-
{{ $t('bossHP') + ':' }}
- {{ quest.boss.hp }}
-
-
-
{{ $t('difficulty') + ':' }}
-
-
-
-
+
{{ $t('collect') + ':' }}
+
+
+ {{ collect.count }} {{ getCollectText(collect) }}
+
+
-
+
+
{{ $t('bossHP') + ':' }}
+ {{ quest.boss.hp }}
+
+
+
{{ $t('difficulty') + ':' }}
+
+
+
+
+
{{ limitedString }}
@@ -131,6 +132,10 @@ export default {
quest: {
type: Object,
},
+ abbreviated: {
+ type: Boolean,
+ default: false,
+ },
},
data () {
return {
diff --git a/website/common/script/content/bundles.js b/website/common/script/content/bundles.js
index 97985190a8..74452b1207 100644
--- a/website/common/script/content/bundles.js
+++ b/website/common/script/content/bundles.js
@@ -21,8 +21,9 @@ const bundles = {
'harpy',
'owl',
],
+ event: EVENTS.potions202105,
canBuy () {
- return moment().isBetween('2019-05-09', '2019-06-02');
+ return moment().isBefore(EVENTS.potions202105.end);
},
type: 'quests',
class: 'quest_bundle_featheredFriends',
diff --git a/website/common/script/libs/getItemInfo.js b/website/common/script/libs/getItemInfo.js
index c9d26ac32c..e7ffb300b6 100644
--- a/website/common/script/libs/getItemInfo.js
+++ b/website/common/script/libs/getItemInfo.js
@@ -122,6 +122,7 @@ export default function getItemInfo (user, type, item, officialPinnedItems, lang
purchaseType: 'bundles',
path: `bundles.${item.key}`,
pinType: 'bundles',
+ event: item.event,
};
break;
case 'quests': // eslint-disable-line no-case-declarations