diff --git a/packages/frontend/@n8n/i18n/src/locales/en.json b/packages/frontend/@n8n/i18n/src/locales/en.json
index 38c43aa881c..fc563a1ce35 100644
--- a/packages/frontend/@n8n/i18n/src/locales/en.json
+++ b/packages/frontend/@n8n/i18n/src/locales/en.json
@@ -1958,8 +1958,6 @@
"runData.aiContentBlock.tokens": "{count} Tokens",
"runData.aiContentBlock.tokens.prompt": "Prompt:",
"runData.aiContentBlock.tokens.completion": "Completion:",
- "runData.trimmedData.title": "No data yet",
- "runData.trimmedData.message": "Data will be available here once the execution has finished.",
"runData.trimmedData.loading": "Loading data",
"runData.panel.actions.collapse": "Collapse panel",
"runData.panel.actions.open": "Open panel",
diff --git a/packages/frontend/editor-ui/src/components/InputPanel.vue b/packages/frontend/editor-ui/src/components/InputPanel.vue
index f73be09e47b..8ca1ce72d3b 100644
--- a/packages/frontend/editor-ui/src/components/InputPanel.vue
+++ b/packages/frontend/editor-ui/src/components/InputPanel.vue
@@ -574,6 +574,7 @@ function handleChangeCollapsingColumn(columnName: string | null) {
telemetry-source="inputs"
data-test-id="execute-previous-node"
tooltip-placement="bottom"
+ :show-loading-spinner="false"
@execute="onNodeExecute"
>
(),
{
disabled: false,
transparent: false,
square: false,
+ showLoadingSpinner: true,
},
);
@@ -402,8 +404,8 @@ async function onClick() {
- {{
- i18n.baseText('ndv.output.waitingToRun')
- }}
+
+
+
+
+
+ {{ i18n.baseText('ndv.output.waitingToRun') }}
+
+
{{ i18n.baseText('ndv.output.runNodeHintSubNode') }}
@@ -523,4 +528,16 @@ function handleChangeCollapsingColumn(columnName: string | null) {
font-size: var(--font-size-s);
font-weight: var(--font-weight-regular);
}
+
+.spinner {
+ display: flex;
+ justify-content: center;
+ margin-bottom: var(--ndv-spacing);
+
+ * {
+ color: var(--color-primary);
+ min-height: 40px;
+ min-width: 40px;
+ }
+}
diff --git a/packages/frontend/editor-ui/src/components/RunData.vue b/packages/frontend/editor-ui/src/components/RunData.vue
index c72305ff5b2..f37256ce4b9 100644
--- a/packages/frontend/editor-ui/src/components/RunData.vue
+++ b/packages/frontend/editor-ui/src/components/RunData.vue
@@ -77,7 +77,6 @@ import {
} from '@n8n/design-system';
import { storeToRefs } from 'pinia';
import { useRoute } from 'vue-router';
-import { useUIStore } from '@/stores/ui.store';
import { useSchemaPreviewStore } from '@/stores/schemaPreview.store';
import { asyncComputed } from '@vueuse/core';
import ViewSubExecution from './ViewSubExecution.vue';
@@ -234,7 +233,6 @@ const ndvStore = useNDVStore();
const workflowsStore = useWorkflowsStore();
const sourceControlStore = useSourceControlStore();
const rootStore = useRootStore();
-const uiStore = useUIStore();
const schemaPreviewStore = useSchemaPreviewStore();
const posthogStore = usePostHog();
@@ -1664,6 +1662,18 @@ defineExpose({ enterEditMode });
{{ executingMessage }}
+
+
+
+
+
+ {{ i18n.baseText('runData.trimmedData.loading') }}
+
+
+
-
-
-
- {{ i18n.baseText('runData.trimmedData.loading') }}
-
-
-
-
- {{ i18n.baseText('runData.trimmedData.message') }}
-
-