Skip to content

Commit 75916f7

Browse files
committed
chore: Avatar controls lost direct profile navigation for a subset of contributors
1 parent 12b8f15 commit 75916f7

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

app/pages/about.vue

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -335,15 +335,9 @@ onUnmounted(() => document.removeEventListener('pointerdown', onDocumentPointerD
335335
? 'hover:scale-125 focus-visible:scale-125'
336336
: 'hover:scale-110 focus-visible:scale-110',
337337
]"
338-
@mouseenter="
339-
isExpandable(contributor) &&
340-
open(contributor, $event.currentTarget as HTMLElement)
341-
"
342-
@mouseleave="isExpandable(contributor) && scheduleClose(contributor)"
343-
@click="
344-
isExpandable(contributor) &&
345-
toggle(contributor, $event.currentTarget as HTMLElement)
346-
"
338+
@mouseenter="open(contributor, $event.currentTarget as HTMLElement)"
339+
@mouseleave="scheduleClose(contributor)"
340+
@click="toggle(contributor, $event.currentTarget as HTMLElement)"
347341
@keydown.escape="activeContributor = null"
348342
>
349343
<img

0 commit comments

Comments
 (0)