mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Fix search highlights on node details view table schema (#14379)
This commit is contained in:
@@ -616,21 +616,22 @@ watch(focusedMappableInput, (curr) => {
|
|||||||
/>
|
/>
|
||||||
<N8nTree v-else-if="isObject(data)" :node-class="$style.nodeClass" :value="data">
|
<N8nTree v-else-if="isObject(data)" :node-class="$style.nodeClass" :value="data">
|
||||||
<template #label="{ label, path }">
|
<template #label="{ label, path }">
|
||||||
<span
|
<TextWithHighlights
|
||||||
|
data-target="mappable"
|
||||||
:class="{
|
:class="{
|
||||||
[$style.hoveringKey]: mappingEnabled && isHovering(path, index2),
|
[$style.hoveringKey]: mappingEnabled && isHovering(path, index2),
|
||||||
[$style.draggingKey]: isDraggingKey(path, index2),
|
[$style.draggingKey]: isDraggingKey(path, index2),
|
||||||
[$style.dataKey]: true,
|
[$style.dataKey]: true,
|
||||||
[$style.mappable]: mappingEnabled,
|
[$style.mappable]: mappingEnabled,
|
||||||
}"
|
}"
|
||||||
data-target="mappable"
|
:content="label || i18n.baseText('runData.unnamedField')"
|
||||||
|
:search="search"
|
||||||
:data-name="getCellPathName(path, index2)"
|
:data-name="getCellPathName(path, index2)"
|
||||||
:data-value="getCellExpression(path, index2)"
|
:data-value="getCellExpression(path, index2)"
|
||||||
:data-depth="path.length"
|
:data-depth="path.length"
|
||||||
@mouseenter="() => onMouseEnterKey(path, index2)"
|
@mouseenter="() => onMouseEnterKey(path, index2)"
|
||||||
@mouseleave="onMouseLeaveKey"
|
@mouseleave="onMouseLeaveKey"
|
||||||
>{{ label || i18n.baseText('runData.unnamedField') }}</span
|
/>
|
||||||
>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template #value="{ value }">
|
<template #value="{ value }">
|
||||||
|
|||||||
Reference in New Issue
Block a user