aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorJames Coleman <grmrgecko@gmail.com>2022-05-12 17:30:24 -0500
committerJames Coleman <grmrgecko@gmail.com>2022-05-12 17:30:24 -0500
commit9506ed53c8ae78488aadff030366186af3cbd1ec (patch)
tree63b47a242844696a40b8b0083c19287c9b20977f /src
parent2ac75c05349ee4315bfdad238504e6693adc322d (diff)
downloadhomer-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.vue3
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) {