fix(editor): Fix insights summary banner empty state on time saved tab (#14838)

This commit is contained in:
Csaba Tuncsik
2025-04-23 17:07:09 +02:00
committed by GitHub
parent 271024ded0
commit 2920381903

View File

@@ -101,11 +101,9 @@ const trackTabClick = (insightType: keyof InsightsSummary) => {
<N8nTooltip placement="bottom">
<template #content>
<i18n-t keypath="insights.banner.timeSaved.tooltip">
<template #link>
<a href="#">{{
i18n.baseText('insights.banner.timeSaved.tooltip.link.text')
}}</a>
</template>
<template #link>{{
i18n.baseText('insights.banner.timeSaved.tooltip.link.text')
}}</template>
</i18n-t>
</template>
<N8nIcon :class="$style.icon" icon="info-circle" />
@@ -219,7 +217,7 @@ const trackTabClick = (insightType: keyof InsightsSummary) => {
.icon {
height: 20px;
width: 8px;
top: -3px;
top: 5px;
transform: translateY(0);
color: var(--color-text-light);
}