mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-03 08:21:07 +00:00
fix(world-boss): remove notification
This commit is contained in:
parent
16524d4464
commit
5256569bac
2 changed files with 3 additions and 2 deletions
|
|
@ -3,7 +3,8 @@ base-notification(
|
|||
:can-remove="false",
|
||||
:notification="{}",
|
||||
:read-after-click="false",
|
||||
@click="action"
|
||||
@click="action",
|
||||
v-if="worldBoss.active"
|
||||
)
|
||||
.background(slot="content")
|
||||
.text
|
||||
|
|
|
|||
|
|
@ -495,7 +495,7 @@ export default {
|
|||
categories.push({
|
||||
identifier: 'cards',
|
||||
text: this.$t('cards'),
|
||||
items: _map(_filter(this.content.cardTypes, (value, key) => {
|
||||
items: _map(_filter(this.content.cardTypes, (value) => {
|
||||
return value.yearRound;
|
||||
}), (value) => {
|
||||
return {
|
||||
|
|
|
|||
Loading…
Reference in a new issue