mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 19:11:13 +00:00
fix(editor): Addressing internal testing feedback for folders (no-changelog) (#13997)
This commit is contained in:
committed by
GitHub
parent
305ea0fb32
commit
1f56a24bbd
@@ -15,6 +15,7 @@ const props = defineProps<{
|
||||
modalName: string;
|
||||
data?: {
|
||||
closeCallback?: () => void;
|
||||
customHeading?: string;
|
||||
};
|
||||
}>();
|
||||
|
||||
@@ -89,7 +90,7 @@ const confirm = async () => {
|
||||
<N8nBadge>{{ i18n.baseText('communityPlusModal.badge') }}</N8nBadge>
|
||||
</p>
|
||||
<N8nText tag="h1" align="center" size="xlarge" class="mb-m">{{
|
||||
i18n.baseText('communityPlusModal.title')
|
||||
data?.customHeading ?? i18n.baseText('communityPlusModal.title')
|
||||
}}</N8nText>
|
||||
<N8nText tag="p">{{ i18n.baseText('communityPlusModal.description') }}</N8nText>
|
||||
<ul :class="$style.features">
|
||||
@@ -114,6 +115,13 @@ const confirm = async () => {
|
||||
{{ i18n.baseText('communityPlusModal.features.third.description') }}
|
||||
</N8nText>
|
||||
</li>
|
||||
<li>
|
||||
<i> 📁</i>
|
||||
<N8nText>
|
||||
<strong>{{ i18n.baseText('communityPlusModal.features.fourth.title') }}</strong>
|
||||
{{ i18n.baseText('communityPlusModal.features.fourth.description') }}
|
||||
</N8nText>
|
||||
</li>
|
||||
</ul>
|
||||
<N8nFormInput
|
||||
id="email"
|
||||
|
||||
Reference in New Issue
Block a user