Fix log sequence view

This commit is contained in:
D. Berge
2024-05-04 17:29:31 +02:00
parent 8c6eefed97
commit 40bc1f9293

View File

@@ -488,6 +488,9 @@ export default {
rows () {
const rows = {};
this.items
.filter(i => {
return !this.$route.params.sequence || (this.$route.params.sequence == i.sequence)
})
.filter(i => {
for (const label of this.filterableLabels) {
if (!this.shownLabels.includes(label) && i.labels.includes(label)) {