Skip to content

Commit

Permalink
Merge pull request #112 from nextcloud/fix/action-component-event-pro…
Browse files Browse the repository at this point in the history
…pagation

Fix propagation of handled click event in action component
  • Loading branch information
ChristophWurst authored Nov 14, 2018
2 parents a6cf8d7 + a5a7e0f commit e92a65f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Action/Action.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<!-- If more than one action, create a popovermenu -->
<template v-if="!isSingleAction">
<div v-click-outside="closeMenu" tabindex="1" class="action-item__menutoggle icon-more"
@click="toggleMenu" />
@click.prevent="toggleMenu" />
<div :class="{ 'open': opened }" class="action-item__menu popovermenu">
<popover-menu :menu="actions" />
</div>
Expand Down

0 comments on commit e92a65f

Please sign in to comment.