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,20 +1,3 @@
|
||||
<template>
|
||||
<n8n-node-icon
|
||||
:type="iconType"
|
||||
:src="iconSource.path || iconSource.fileBuffer"
|
||||
:name="iconSource.icon"
|
||||
:color="color"
|
||||
:disabled="disabled"
|
||||
:size="size"
|
||||
:circle="circle"
|
||||
:node-type-name="nodeName ?? nodeType?.displayName ?? ''"
|
||||
:show-tooltip="showTooltip"
|
||||
:tooltip-position="tooltipPosition"
|
||||
:badge="badge"
|
||||
@click="emit('click')"
|
||||
></n8n-node-icon>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import type { IVersionNode, SimplifiedNodeType } from '@/Interface';
|
||||
import { useRootStore } from '@/stores/root.store';
|
||||
@@ -130,4 +113,21 @@ const badge = computed(() => {
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<n8n-node-icon
|
||||
:type="iconType"
|
||||
:src="iconSource.path || iconSource.fileBuffer"
|
||||
:name="iconSource.icon"
|
||||
:color="color"
|
||||
:disabled="disabled"
|
||||
:size="size"
|
||||
:circle="circle"
|
||||
:node-type-name="nodeName ?? nodeType?.displayName ?? ''"
|
||||
:show-tooltip="showTooltip"
|
||||
:tooltip-position="tooltipPosition"
|
||||
:badge="badge"
|
||||
@click="emit('click')"
|
||||
></n8n-node-icon>
|
||||
</template>
|
||||
|
||||
<style lang="scss" module></style>
|
||||
|
||||
Reference in New Issue
Block a user