mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
fix: Update sales templates card content (no-changelog) (#9155)
This commit is contained in:
parent
08e35027f1
commit
53101960e6
|
@ -95,13 +95,9 @@
|
||||||
data-test-id="browse-sales-templates-card"
|
data-test-id="browse-sales-templates-card"
|
||||||
@click="trackCategoryLinkClick('Sales')"
|
@click="trackCategoryLinkClick('Sales')"
|
||||||
>
|
>
|
||||||
<n8n-icon :class="$style.emptyStateCardIcon" icon="handshake" />
|
<n8n-icon :class="$style.emptyStateCardIcon" icon="box-open" />
|
||||||
<n8n-text size="large" class="mt-xs" color="text-base">
|
<n8n-text size="large" class="mt-xs" color="text-base">
|
||||||
{{
|
{{ $locale.baseText('workflows.empty.browseTemplates') }}
|
||||||
$locale.baseText('workflows.empty.browseTemplates', {
|
|
||||||
interpolate: { category: 'Sales' },
|
|
||||||
})
|
|
||||||
}}
|
|
||||||
</n8n-text>
|
</n8n-text>
|
||||||
</n8n-card>
|
</n8n-card>
|
||||||
</a>
|
</a>
|
||||||
|
@ -268,6 +264,9 @@ const WorkflowsView = defineComponent({
|
||||||
return userRole;
|
return userRole;
|
||||||
},
|
},
|
||||||
isSalesUser() {
|
isSalesUser() {
|
||||||
|
if (!this.userRole) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
return ['Sales', 'sales-and-marketing'].includes(this.userRole);
|
return ['Sales', 'sales-and-marketing'].includes(this.userRole);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue