Skip to content

Commit 7c277b8

Browse files
committed
replace implementation
1 parent 1f4ea36 commit 7c277b8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Diff for: packages/editor-ui/src/components/ExpressionEditModal.vue

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import type { INodeProperties } from 'n8n-workflow';
1414
import { NodeConnectionType } from 'n8n-workflow';
1515
import { outputTheme } from './ExpressionEditorModal/theme';
1616
import ExpressionOutput from './InlineExpressionEditor/ExpressionOutput.vue';
17-
import RunDataSchema from './RunDataSchema.vue';
17+
import VirtualSchema from '@/components/VirtualSchema.vue';
1818
import OutputItemSelect from './InlineExpressionEditor/OutputItemSelect.vue';
1919
import { useI18n } from '@/composables/useI18n';
2020
import { useDebounce } from '@/composables/useDebounce';
@@ -167,14 +167,13 @@ const onResizeThrottle = useThrottleFn(onResize, 10);
167167
</template>
168168
</N8nInput>
169169

170-
<RunDataSchema
170+
<VirtualSchema
171171
:class="$style.schema"
172172
:search="appliedSearch"
173173
:nodes="parentNodes"
174174
:mapping-enabled="!isReadOnly"
175175
:connection-type="NodeConnectionType.Main"
176176
pane-type="input"
177-
context="modal"
178177
/>
179178
</div>
180179
</N8nResizeWrapper>

0 commit comments

Comments
 (0)