From ed661f3ba9bd61ddcda9201cb8a6e2bf9cf22c94 Mon Sep 17 00:00:00 2001 From: "Grigorii K. Shartsev" Date: Tue, 30 Jan 2024 13:56:59 +0500 Subject: [PATCH] fixup! apply suggestion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Raimund Schlüßler Signed-off-by: Grigorii K. Shartsev --- src/components/NcActions/NcActions.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/NcActions/NcActions.vue b/src/components/NcActions/NcActions.vue index f41e4e46c6..4cd7f88029 100644 --- a/src/components/NcActions/NcActions.vue +++ b/src/components/NcActions/NcActions.vue @@ -1486,8 +1486,8 @@ export default { // (!) Hotfix (!) // In Vue 2 it is not easy to search for NcAction* in sub-component of a slot. // When a menu is rendered, children are not mounted yet. - // If we have NaActions > MyActionsList > NcActionButton, only MyActionsList's vnode is available. - // So when NcActions has actions as non-direct children, here the we don't know about them. + // If we have NcActions > MyActionsList > NcActionButton, only MyActionsList's vnode is available. + // So when NcActions has actions as non-direct children, here then we don't know about them. // Like this menu has no buttons/links/inputs. // It makes the menu incorrectly considered a tooltip. const ncActions = actions.filter((action) => this.getActionName(action).startsWith('NcAction'))