This commit is contained in:
lesion
2022-05-20 12:10:32 +02:00
parent 9fa3d03de5
commit 63b9d41470
3 changed files with 37 additions and 3 deletions

View File

@@ -154,7 +154,7 @@ export default {
if (!this.tagName) { return this.tags.slice(0, 10).map(t => t.tag) }
const tagName = this.tagName.trim().toLowerCase()
return this.tags.filter(t => t.tag.toLowerCase().includes(tagName)).map(t => t.tag)
}
}
},
methods: {
...mapActions(['updateMeta']),