From bed20ccbc7943c2c8e2b840aec87ebce2d153ec5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raimund=20Schl=C3=BC=C3=9Fler?= Date: Fri, 10 Mar 2023 22:11:47 +0100 Subject: [PATCH] Fix navigate handler call MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Raimund Schlüßler --- src/components/NcAppNavigationItem/NcAppNavigationItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/NcAppNavigationItem/NcAppNavigationItem.vue b/src/components/NcAppNavigationItem/NcAppNavigationItem.vue index f5933c00c1..a689fc0bc7 100644 --- a/src/components/NcAppNavigationItem/NcAppNavigationItem.vue +++ b/src/components/NcAppNavigationItem/NcAppNavigationItem.vue @@ -650,7 +650,7 @@ export default { // forward click event onClick(event, navigate) { // Navigate is only defined if it is a router-link - navigate?.() + navigate?.(event) this.$emit('click', event) },