mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix(editor): Adjust spacing in templates for Vue 3 (#6744)
* fix(editor): Adjust spacing in templates * fix: Undo unneeded change * fix: Undo unneeded change
This commit is contained in:
parent
d8073efa94
commit
5df058e0d8
|
@ -31,9 +31,8 @@
|
|||
<n8n-text size="small" color="text-base">
|
||||
{{ $locale.baseText('template.details.created') }}
|
||||
<TimeAgo :date="template.createdAt" />
|
||||
<span>{{ $locale.baseText('template.details.by') }}</span>
|
||||
<span v-if="template.user"> {{ template.user.username }}</span>
|
||||
<span v-else> n8n team</span>
|
||||
{{ $locale.baseText('template.details.by') }}
|
||||
{{ template.user ? template.user.username : 'n8n team' }}
|
||||
</n8n-text>
|
||||
</div>
|
||||
<div :class="$style.text">
|
||||
|
|
Loading…
Reference in a new issue