mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
refactor(editor): Standardize components sections order (no-changelog) (#10540)
This commit is contained in:
@@ -1,9 +1,3 @@
|
||||
<template>
|
||||
<span :title="name" :data-test-id="testId">
|
||||
<slot :shortened-name="shortenedName"></slot>
|
||||
</span>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { computed } from 'vue';
|
||||
import { shorten } from '@/utils/typesUtils';
|
||||
@@ -25,3 +19,9 @@ const shortenedName = computed(() =>
|
||||
shorten(props.name, props.limit, WORKFLOW_NAME_END_COUNT_TO_KEEP),
|
||||
);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<span :title="name" :data-test-id="testId">
|
||||
<slot :shortened-name="shortenedName"></slot>
|
||||
</span>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user