forked from extern/homer
Include subtitles in search
This commit is contained in:
parent
a2e28229a9
commit
1c451e119e
@ -199,6 +199,7 @@ export default {
|
||||
matchesFilter: function (item) {
|
||||
return (
|
||||
item.name.toLowerCase().includes(this.filter) ||
|
||||
(item.subtitle && item.subtitle.toLowerCase().includes(this.filter)) ||
|
||||
(item.tag && item.tag.toLowerCase().includes(this.filter))
|
||||
);
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user