aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-06-26 19:16:59 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2024-06-27 12:13:14 +0200
commitdd3dcf37039ed969b1a2f6b89941a65ccf73b696 (patch)
tree0a5705f3c902a10a0acfb7b9f2cafd67551cf638 /core
parente9dccef474318cfe80dea49852a2dadbad06d60b (diff)
downloadnextcloud-server-dd3dcf37039ed969b1a2f6b89941a65ccf73b696.tar.gz
nextcloud-server-dd3dcf37039ed969b1a2f6b89941a65ccf73b696.zip
fix(unified-search): Also show local search on apps management
Co-authored-by: Simon L. <szaimen@e.mail.de> Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'core')
-rw-r--r--core/src/views/UnifiedSearch.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/views/UnifiedSearch.vue b/core/src/views/UnifiedSearch.vue
index 661cfd43dde..1f0f91cc5fe 100644
--- a/core/src/views/UnifiedSearch.vue
+++ b/core/src/views/UnifiedSearch.vue
@@ -80,7 +80,7 @@ export default defineComponent({
*/
supportsLocalSearch() {
// TODO: Make this an API
- const providerPaths = ['/settings/users', '/apps/files', '/apps/deck']
+ const providerPaths = ['/settings/users', '/apps/files', '/apps/deck', '/settings/apps']
return providerPaths.some((path) => this.currentLocation.pathname?.includes?.(path))
},
},