diff options
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) { |