From 1bfe473007e5aa4c24847f4a22e3175f6918bc2a Mon Sep 17 00:00:00 2001 From: skjnldsv Date: Wed, 2 Apr 2025 17:44:41 +0200 Subject: [PATCH] chore(files): remove popover workaround after vue lib update Signed-off-by: skjnldsv --- apps/files/src/components/FileEntry/FileEntryActions.vue | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/apps/files/src/components/FileEntry/FileEntryActions.vue b/apps/files/src/components/FileEntry/FileEntryActions.vue index 9916e420e1b..c130ab49c0a 100644 --- a/apps/files/src/components/FileEntry/FileEntryActions.vue +++ b/apps/files/src/components/FileEntry/FileEntryActions.vue @@ -310,12 +310,8 @@ export default defineComponent({ }, onMenuClosed() { - // TODO: remove timeout once https://github.com/nextcloud-libraries/nextcloud-vue/pull/6683 is merged - // and updated on server. - setTimeout(() => { - // We reset the actions menu state when the menu is finally closed - this.openedMenu = false - }, 100) + // We reset the actions menu state when the menu is finally closed + this.openedMenu = false }, }, })