From 8d20256c1b39e7a7cf89164c027e4475b73a3b64 Mon Sep 17 00:00:00 2001 From: guerler Date: Fri, 28 Jun 2024 12:49:25 +0200 Subject: [PATCH] Add prevent directive to masthead item click handler --- client/src/components/Masthead/MastheadItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Masthead/MastheadItem.vue b/client/src/components/Masthead/MastheadItem.vue index 227c86656927..f3c1ca5c3ab5 100644 --- a/client/src/components/Masthead/MastheadItem.vue +++ b/client/src/components/Masthead/MastheadItem.vue @@ -43,7 +43,7 @@ defineProps({ :target="target || '_parent'" :link-classes="{ 'nav-icon': !!icon, toggle: toggle }" :title="tooltip" - @click="$emit('click')"> + @click.prevent="$emit('click')">