mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-14 07:52:15 +00:00
fix(shops): quest countdowns too
This commit is contained in:
parent
e56b672226
commit
96a919ed4b
1 changed files with 3 additions and 1 deletions
|
|
@ -319,7 +319,6 @@ export default {
|
|||
|
||||
isPinned: false,
|
||||
selectedAmountToBuy: 1,
|
||||
endDate: seasonalShopConfig.dateRange.end,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
|
|
@ -343,6 +342,9 @@ export default {
|
|||
if (this.priceType === 'hourglasses') return this.icons.hourglass;
|
||||
return this.icons.gem;
|
||||
},
|
||||
endDate () {
|
||||
return moment(this.item.event.end);
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
item: function itemChanged () {
|
||||
|
|
|
|||
Loading…
Reference in a new issue