fix: mouse hover over stack (#13119)

fix: mouse hover on stack
This commit is contained in:
martin
2024-10-02 17:04:21 +02:00
committed by GitHub
parent 4ea281f854
commit e7862fc0f0
2 changed files with 3 additions and 1 deletions

View File

@@ -44,6 +44,7 @@
export let readonly = false;
export let showArchiveIcon = false;
export let showStackedIcon = true;
export let disableMouseOver = false;
export let intersectionConfig: {
root?: HTMLElement;
bottom?: string;
@@ -207,7 +208,7 @@
on:click={handleClick}
role="link"
>
{#if mouseOver}
{#if mouseOver && !disableMouseOver}
<!-- lazy show the url on mouse over-->
<a
class="absolute z-30 {className} top-[41px]"