handle missing tags
This commit is contained in:
parent
76a29dfddd
commit
2a62444036
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ const onToggleTag = (event: Event, tagId: string) => {
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
Object.keys(entries.value).forEach(entryId => {
|
Object.keys(entries.value).forEach(entryId => {
|
||||||
entries.value[entryId].hidden = !entries.value[entryId].tags.some(own => tagsToggled.includes(own))
|
entries.value[entryId].hidden = !entries.value[entryId].tags?.some(own => tagsToggled.includes(own))
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue