Skip to content

Commit 32372f7

Browse files
authored
fix: remove redundant mouseenter event handler in AppCard component (#156)
1 parent fca05c3 commit 32372f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Apps/AppCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div class="common-card is-flex is-align-items-center is-justify-content-center app-card aspect-square"
3-
@mouseleave="hover = true" @mouseover="hover = true" @mouseenter="actionBtnHover = true">
3+
@mouseleave="hover = true" @mouseover="hover = true" >
44
<!-- Action Button Start -->
55
<div v-if="showActionButton" class="action-btn" :class="{ 'action-btn-hover': actionBtnHover }">
66
<b-dropdown ref="dro" v-on-click-outside="() => ($refs.dro.isActive = false)" :mobile-modal="false"

0 commit comments

Comments
 (0)