From e89487f602f130675dea79bcbdf23832ed5b858a Mon Sep 17 00:00:00 2001 From: Benjamin Schroth <68321970+schrothbn@users.noreply.github.com> Date: Tue, 24 Jun 2025 17:53:55 +0200 Subject: [PATCH] fix(editor): Remove automatic resizing of output view (#16672) --- .../frontend/editor-ui/src/components/OutputPanel.vue | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/packages/frontend/editor-ui/src/components/OutputPanel.vue b/packages/frontend/editor-ui/src/components/OutputPanel.vue index 1934e6c4a3..09bb279846 100644 --- a/packages/frontend/editor-ui/src/components/OutputPanel.vue +++ b/packages/frontend/editor-ui/src/components/OutputPanel.vue @@ -13,7 +13,6 @@ import { useWorkflowsStore } from '@/stores/workflows.store'; import { useNDVStore } from '@/stores/ndv.store'; import { useNodeTypesStore } from '@/stores/nodeTypes.store'; import RunDataAi from './RunDataAi/RunDataAi.vue'; -import { ndvEventBus } from '@/event-bus'; import { useNodeType } from '@/composables/useNodeType'; import { usePinnedData } from '@/composables/usePinnedData'; import { useTelemetry } from '@/composables/useTelemetry'; @@ -294,14 +293,6 @@ const onRunIndexChange = (run: number) => { emit('runChange', run); }; -const onUpdateOutputMode = (newOutputMode: OutputType) => { - if (newOutputMode === OUTPUT_TYPE.LOGS) { - ndvEventBus.emit('setPositionByName', 'minLeft'); - } else { - ndvEventBus.emit('setPositionByName', 'initial'); - } -}; - // Set the initial output mode when the component is mounted onMounted(() => { outputMode.value = defaultOutputMode.value; @@ -360,7 +351,6 @@ const activatePane = () => { v-model="outputMode" data-test-id="ai-output-mode-select" :options="outputTypes" - @update:model-value="onUpdateOutputMode" />