Skip to content

Commit 6b992fa

Browse files
authored
Merge pull request #2495 from Open-Earth-Foundation/fix/info-tooltips-non-functional-or-helpful
fix: increases close delay for module card tooltip
2 parents d863a08 + be64575 commit 6b992fa

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

app/src/components/HomePageJN/ModuleCard.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,7 @@ export function ModuleCard({
9191
alt={`${name} module logo`}
9292
/>
9393
{status && status !== "active" && (
94-
<Tag
95-
size="sm"
96-
colorPalette={statusColorMap[status] || "gray"}
97-
>
94+
<Tag size="sm" colorPalette={statusColorMap[status] || "gray"}>
9895
{t(statusLabelMap[status] || status)}
9996
</Tag>
10097
)}
@@ -103,7 +100,7 @@ export function ModuleCard({
103100
<Tooltip
104101
content={getTranslationInLanguage(description)}
105102
showArrow
106-
closeDelay={1000}
103+
closeDelay={8000}
107104
contentProps={{
108105
bg: "content.secondary",
109106
color: "background.default",

0 commit comments

Comments
 (0)