fix: Small changes to user activation modal (no-changelog) (#5962)

This commit is contained in:
Ricardo Espinoza
2023-04-18 07:28:50 -04:00
committed by GitHub
parent c171365d2a
commit 0c10fbc83f
3 changed files with 10 additions and 9 deletions

View File

@@ -15,7 +15,7 @@
<n8n-text :bold="true"> {{ workflowName }} </n8n-text>
</template>
<template #ranSuccessfully>
<n8n-text :bold="true" :class="$style.link">
<n8n-text>
{{
locale.baseText('userActivationSurveyModal.description.workflowRanSuccessfully')
}}
@@ -90,7 +90,7 @@ onMounted(async () => {
currentSettings?.firstSuccessfulWorkflowId ?? '',
);
workflowName.value = name;
showConfetti();
setTimeout(showConfetti, 500);
} catch (e) {}
});
@@ -157,10 +157,6 @@ const showConfetti = () => {
margin-top: var(--spacing-l);
}
.link {
color: var(--color-primary);
}
.description > * {
font-size: var(--font-size-s);
}