From cd751e7cc88d57eed1077f3bec80fd339e26168b Mon Sep 17 00:00:00 2001 From: Csaba Tuncsik Date: Tue, 21 May 2024 13:19:56 +0200 Subject: [PATCH] fix(editor): Fix rundata type errors (no-changelog) (#9443) --- .../editor-ui/src/components/Draggable.vue | 1 + .../editor-ui/src/components/InputPanel.vue | 7 +- .../src/components/NodeExecuteButton.vue | 7 +- .../editor-ui/src/components/OutputPanel.vue | 15 ++-- packages/editor-ui/src/components/RunData.vue | 73 ++++++++++++------- .../editor-ui/src/components/RunDataHtml.vue | 4 +- .../editor-ui/src/components/RunDataJson.vue | 6 +- .../src/components/RunDataJsonActions.vue | 7 +- .../src/components/RunDataSchemaItem.vue | 10 ++- .../editor-ui/src/components/RunDataTable.vue | 10 ++- .../src/composables/usePinnedData.ts | 7 +- .../src/plugins/i18n/locales/en.json | 1 + packages/workflow/src/Interfaces.ts | 2 +- 13 files changed, 95 insertions(+), 55 deletions(-) diff --git a/packages/editor-ui/src/components/Draggable.vue b/packages/editor-ui/src/components/Draggable.vue index 8b65ed35d9..6a700000b8 100644 --- a/packages/editor-ui/src/components/Draggable.vue +++ b/packages/editor-ui/src/components/Draggable.vue @@ -29,6 +29,7 @@ export default defineComponent({ }, type: { type: String, + required: true, }, data: { type: String, diff --git a/packages/editor-ui/src/components/InputPanel.vue b/packages/editor-ui/src/components/InputPanel.vue index ae1a6c2206..b538c12bc7 100644 --- a/packages/editor-ui/src/components/InputPanel.vue +++ b/packages/editor-ui/src/components/InputPanel.vue @@ -1,5 +1,6 @@