diff options
author | James Coleman <grmrgecko@gmail.com> | 2022-05-12 17:30:24 -0500 |
---|---|---|
committer | James Coleman <grmrgecko@gmail.com> | 2022-05-12 17:30:24 -0500 |
commit | 9506ed53c8ae78488aadff030366186af3cbd1ec (patch) | |
tree | 63b47a242844696a40b8b0083c19287c9b20977f /src | |
parent | 2ac75c05349ee4315bfdad238504e6693adc322d (diff) | |
download | homer-9506ed53c8ae78488aadff030366186af3cbd1ec.tar.gz homer-9506ed53c8ae78488aadff030366186af3cbd1ec.tar.zst homer-9506ed53c8ae78488aadff030366186af3cbd1ec.zip |
Add support for search keywords to solve issue #372
Diffstat (limited to 'src')
-rw-r--r-- | src/App.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue index 515177e..c58fca1 100644 --- a/src/App.vue +++ b/src/App.vue | |||
@@ -264,7 +264,8 @@ export default { | |||
264 | return ( | 264 | return ( |
265 | item.name.toLowerCase().includes(this.filter) || | 265 | item.name.toLowerCase().includes(this.filter) || |
266 | (item.subtitle && item.subtitle.toLowerCase().includes(this.filter)) || | 266 | (item.subtitle && item.subtitle.toLowerCase().includes(this.filter)) || |
267 | (item.tag && item.tag.toLowerCase().includes(this.filter)) | 267 | (item.tag && item.tag.toLowerCase().includes(this.filter)) || |
268 | (item.keywords && item.keywords.toLowerCase().includes(this.filter)) | ||
268 | ); | 269 | ); |
269 | }, | 270 | }, |
270 | navigateToFirstService: function (target) { | 271 | navigateToFirstService: function (target) { |