aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-07-25 20:12:52 +0200
committerGitHub <noreply@github.com>2024-07-25 20:12:52 +0200
commit97ea95714aeec2d23567ae5d85b28fd6b688b1cc (patch)
treef9c7ca7ff9e6e64487994fc3461830b1b289a220 /core
parent4f2a29adf95c57bef5d01f27c8b741a9840e82b3 (diff)
parent66f77b562caa7396f1d03509a56af4bea0b3ce89 (diff)
downloadnextcloud-server-97ea95714aeec2d23567ae5d85b28fd6b688b1cc.tar.gz
nextcloud-server-97ea95714aeec2d23567ae5d85b28fd6b688b1cc.zip
Merge pull request #45708 from nextcloud/feat/files-filters
feat(files): Implement files list filters
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 a07860c7e79..fc1d456247c 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', '/settings/apps']
+ const providerPaths = ['/settings/users', '/apps/deck', '/settings/apps']
return providerPaths.some((path) => this.currentLocation.pathname?.includes?.(path))
},
},