aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue
index a60c242..664867f 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -258,7 +258,8 @@ export default {
258 return ( 258 return (
259 item.name.toLowerCase().includes(this.filter) || 259 item.name.toLowerCase().includes(this.filter) ||
260 (item.subtitle && item.subtitle.toLowerCase().includes(this.filter)) || 260 (item.subtitle && item.subtitle.toLowerCase().includes(this.filter)) ||
261 (item.tag && item.tag.toLowerCase().includes(this.filter)) 261 (item.tag && item.tag.toLowerCase().includes(this.filter)) ||
262 (item.keywords && item.keywords.toLowerCase().includes(this.filter))
262 ); 263 );
263 }, 264 },
264 navigateToFirstService: function (target) { 265 navigateToFirstService: function (target) {