diff options
author | Christopher Ng <chrng8@gmail.com> | 2024-02-14 17:05:38 -0800 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2024-03-08 03:46:55 -0800 |
commit | 810bb64028e77e4b2255214637c048c1fa394901 (patch) | |
tree | b42e8db1763a79055221395974863c3794e7ca51 | |
parent | 47ebc1119af919ad2248636f82990ccc2bfc36fa (diff) | |
download | nextcloud-server-810bb64028e77e4b2255214637c048c1fa394901.tar.gz nextcloud-server-810bb64028e77e4b2255214637c048c1fa394901.zip |
fix(files): Close submenu actions after click like top-level actions
Signed-off-by: Christopher Ng <chrng8@gmail.com>
-rw-r--r-- | apps/files/src/components/FileEntry/FileEntryActions.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/components/FileEntry/FileEntryActions.vue b/apps/files/src/components/FileEntry/FileEntryActions.vue index 393b8fd10ce..87ffef1fa3a 100644 --- a/apps/files/src/components/FileEntry/FileEntryActions.vue +++ b/apps/files/src/components/FileEntry/FileEntryActions.vue @@ -77,7 +77,7 @@ :key="action.id" :class="`files-list__row-action-${action.id}`" class="files-list__row-action--submenu" - :close-after-click="false /* never close submenu, just go back */" + close-after-click :data-cy-files-list-row-action="action.id" :title="action.title?.([source], currentView)" @click="onActionClick(action)"> |