Skip to content

Commit

Permalink
Merge pull request #3878 from nextcloud/fix/3775/navigate-event
Browse files Browse the repository at this point in the history
Fix navigate handler call
  • Loading branch information
raimund-schluessler committed Mar 10, 2023
2 parents e62a8e3 + bed20cc commit ad03cf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/NcAppNavigationItem/NcAppNavigationItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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)
},
Expand Down

0 comments on commit ad03cf9

Please sign in to comment.