From 1c451e119e942b9049444425123880bce4c22cf3 Mon Sep 17 00:00:00 2001 From: jo-me Date: Sun, 22 Nov 2020 14:00:29 +0100 Subject: Include subtitles in search --- src/App.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App.vue b/src/App.vue index d97df0c..47e145c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -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)) ); }, -- cgit v1.2.3