mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-14 02:02:19 +00:00
Seasonal alert removed for items you own (#11135)
This commit is contained in:
parent
9e515d96c3
commit
3f99c14a37
2 changed files with 2 additions and 2 deletions
|
|
@ -75,7 +75,7 @@
|
|||
:class="{'notEnough': !preventHealthPotion || !this.enoughCurrency(getPriceClass(), item.value * selectedAmountToBuy)}"
|
||||
) {{ $t('buyNow') }}
|
||||
|
||||
div.limitedTime(v-if="item.event")
|
||||
div.limitedTime(v-if="item.event && item.owned == null")
|
||||
span.svg-icon.inline.icon-16(v-html="icons.clock")
|
||||
span.limitedString {{ limitedString }}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ div
|
|||
slot(name="itemBadge", :item="item", :emptyItem="emptyItem")
|
||||
|
||||
span.badge.badge-pill.badge-item.badge-clock(
|
||||
v-if="item.event && showEventBadge",
|
||||
v-if="item.event && item.owned == null && showEventBadge",
|
||||
)
|
||||
span.svg-icon.inline.clock(v-html="icons.clock")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue