mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
Merge branch 'vue3' of github.com:n8n-io/n8n into vue3
This commit is contained in:
commit
3b93e86adc
|
@ -296,7 +296,6 @@ export default defineComponent({
|
|||
}
|
||||
|
||||
.compact {
|
||||
width: 40px;
|
||||
.icon {
|
||||
margin: 0;
|
||||
overflow: visible !important;
|
||||
|
|
|
@ -694,6 +694,10 @@ export default defineComponent({
|
|||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.el-overlay-dialog {
|
||||
padding-top: var(--spacing-2xs);
|
||||
}
|
||||
|
||||
.ndv-wrapper {
|
||||
overflow: visible;
|
||||
}
|
||||
|
|
|
@ -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