summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMarco <marcoambrosini@icloud.com>2023-11-13 17:40:14 +0900
committernextcloud-command <nextcloud-command@users.noreply.github.com>2023-11-13 09:20:20 +0000
commit7799f6701aa221d932b977878c28d82f6c12ef6b (patch)
treefb2d389849d05f6cb6e642d9d850761153e01c89 /core
parent36d370b2163ac2a98dbecf2400eb1300025b79b2 (diff)
downloadnextcloud-server-7799f6701aa221d932b977878c28d82f6c12ef6b.tar.gz
nextcloud-server-7799f6701aa221d932b977878c28d82f6c12ef6b.zip
Close participants filter after click
Signed-off-by: Marco <marcoambrosini@icloud.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'core')
-rw-r--r--core/src/components/GlobalSearch/SearchableList.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/src/components/GlobalSearch/SearchableList.vue b/core/src/components/GlobalSearch/SearchableList.vue
index e7495afde39..fa4576af60e 100644
--- a/core/src/components/GlobalSearch/SearchableList.vue
+++ b/core/src/components/GlobalSearch/SearchableList.vue
@@ -21,7 +21,9 @@
-->
<template>
- <NcPopover :shown="opened">
+ <NcPopover :shown="opened"
+ @show="opened = true"
+ @hide="opened = false">
<template #trigger>
<slot name="trigger" />
</template>