Skip to content

Commit

Permalink
fix: item prevent clicking
Browse files Browse the repository at this point in the history
  • Loading branch information
olgakup committed Dec 26, 2024
1 parent 04b683a commit 807ac74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
'app-menu__link__block__pin',
{ 'app-menu__link__block__pin__visible': showIsPinned },
]"
@click="setPinned"
@click.stop="setPinned"
>
<pin-icon :is-pinned="props.isPinned" :is-active="pinIconIsActive" />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
:can-drag="getCanDrag(element)"
:new-network-tags="newNetworksWithTags"
:index="index"
@click.self="setNetwork(element)"
@click="setNetwork(element)"
@update:pin-network="updatePinNetwork"
@update:gradient="emit('update:gradient', $event)"
:class="{
Expand Down

0 comments on commit 807ac74

Please sign in to comment.