mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
refactor(editor): Improve linting for component and prop names (no-changelog) (#8169)
This commit is contained in:
committed by
GitHub
parent
639afcd7a5
commit
68cff4c59e
@@ -72,10 +72,10 @@ const onDragEnd = (el: HTMLElement) => {
|
||||
<n8n-info-tip v-if="isDataEmpty">{{
|
||||
i18n.baseText('dataMapping.schemaView.emptyData')
|
||||
}}</n8n-info-tip>
|
||||
<draggable
|
||||
<Draggable
|
||||
v-else
|
||||
type="mapping"
|
||||
targetDataKey="mappable"
|
||||
target-data-key="mappable"
|
||||
:disabled="!mappingEnabled"
|
||||
@dragstart="onDragStart"
|
||||
@dragend="onDragEnd"
|
||||
@@ -84,20 +84,20 @@ const onDragEnd = (el: HTMLElement) => {
|
||||
<MappingPill v-if="el" :html="el.outerHTML" :can-drop="canDrop" />
|
||||
</template>
|
||||
<div :class="$style.schema">
|
||||
<run-data-schema-item
|
||||
<RunDataSchemaItem
|
||||
:schema="schema"
|
||||
:level="0"
|
||||
:parent="null"
|
||||
:paneType="paneType"
|
||||
:subKey="`${schema.type}-0-0`"
|
||||
:mappingEnabled="mappingEnabled"
|
||||
:draggingPath="draggingPath"
|
||||
:distanceFromActive="distanceFromActive"
|
||||
:pane-type="paneType"
|
||||
:sub-key="`${schema.type}-0-0`"
|
||||
:mapping-enabled="mappingEnabled"
|
||||
:dragging-path="draggingPath"
|
||||
:distance-from-active="distanceFromActive"
|
||||
:node="node"
|
||||
:search="search"
|
||||
/>
|
||||
</div>
|
||||
</draggable>
|
||||
</Draggable>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user