From 9506ed53c8ae78488aadff030366186af3cbd1ec Mon Sep 17 00:00:00 2001 From: James Coleman Date: Thu, 12 May 2022 17:30:24 -0500 Subject: Add support for search keywords to solve issue #372 --- src/App.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') 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 { return ( item.name.toLowerCase().includes(this.filter) || (item.subtitle && item.subtitle.toLowerCase().includes(this.filter)) || - (item.tag && item.tag.toLowerCase().includes(this.filter)) + (item.tag && item.tag.toLowerCase().includes(this.filter)) || + (item.keywords && item.keywords.toLowerCase().includes(this.filter)) ); }, navigateToFirstService: function (target) { -- cgit v1.2.3