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 {
|
.compact {
|
||||||
width: 40px;
|
|
||||||
.icon {
|
.icon {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
overflow: visible !important;
|
overflow: visible !important;
|
||||||
|
|
|
@ -694,6 +694,10 @@ export default defineComponent({
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
.el-overlay-dialog {
|
||||||
|
padding-top: var(--spacing-2xs);
|
||||||
|
}
|
||||||
|
|
||||||
.ndv-wrapper {
|
.ndv-wrapper {
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,9 +31,8 @@
|
||||||
<n8n-text size="small" color="text-base">
|
<n8n-text size="small" color="text-base">
|
||||||
{{ $locale.baseText('template.details.created') }}
|
{{ $locale.baseText('template.details.created') }}
|
||||||
<TimeAgo :date="template.createdAt" />
|
<TimeAgo :date="template.createdAt" />
|
||||||
<span>{{ $locale.baseText('template.details.by') }}</span>
|
{{ $locale.baseText('template.details.by') }}
|
||||||
<span v-if="template.user"> {{ template.user.username }}</span>
|
{{ template.user ? template.user.username : 'n8n team' }}
|
||||||
<span v-else> n8n team</span>
|
|
||||||
</n8n-text>
|
</n8n-text>
|
||||||
</div>
|
</div>
|
||||||
<div :class="$style.text">
|
<div :class="$style.text">
|
||||||
|
|
Loading…
Reference in a new issue