diff --git a/packages/editor-ui/src/components/RunData.vue b/packages/editor-ui/src/components/RunData.vue index a2e55fe355..2f4d3412cf 100644 --- a/packages/editor-ui/src/components/RunData.vue +++ b/packages/editor-ui/src/components/RunData.vue @@ -239,7 +239,6 @@ class="ph-no-capture" :paneType="paneType" :editMode="editMode" - :currentOutputIndex="currentOutputIndex" :sessioId="sessionId" :node="node" :inputData="inputData" diff --git a/packages/editor-ui/src/components/RunDataJson.vue b/packages/editor-ui/src/components/RunDataJson.vue index 6431456703..f9cfee5703 100644 --- a/packages/editor-ui/src/components/RunDataJson.vue +++ b/packages/editor-ui/src/components/RunDataJson.vue @@ -16,7 +16,6 @@ :disabled="!mappingEnabled" @dragstart="onDragStart" @dragend="onDragEnd" - ref="draggable" > @@ -81,9 +92,6 @@ export default mixins(externalHooks).extend({ editMode: { type: Object as () => { enabled?: boolean; value?: string; }, }, - currentOutputIndex: { - type: Number, - }, sessionId: { type: String, }, @@ -197,6 +205,9 @@ export default mixins(externalHooks).extend({ getContent(value: unknown): string { return isString(value) ? `"${ value }"` : JSON.stringify(value); }, + getListItemName(path: string): string { + return path.replace(/^(\["?\d"?]\.?)/g, ''); + }, }, });