diff options
-rw-r--r-- | src/App.vue | 1 |
1 files changed, 1 insertions, 0 deletions
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 { | |||
199 | matchesFilter: function (item) { | 199 | matchesFilter: function (item) { |
200 | return ( | 200 | return ( |
201 | item.name.toLowerCase().includes(this.filter) || | 201 | item.name.toLowerCase().includes(this.filter) || |
202 | (item.subtitle && item.subtitle.toLowerCase().includes(this.filter)) || | ||
202 | (item.tag && item.tag.toLowerCase().includes(this.filter)) | 203 | (item.tag && item.tag.toLowerCase().includes(this.filter)) |
203 | ); | 204 | ); |
204 | }, | 205 | }, |