From 61ca4be3acf5adbb7c0399b3c9c267cfa0ed9e2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C5=BEe=20Fortun?= Date: Wed, 4 Dec 2024 13:59:12 +0100 Subject: [PATCH] Fix inputValue not being respected in Input Prompt --- .../src/components/Configurator/Function.vue | 2 +- lib/vue/src/components/prompts/definitions.ts | 42 ++++++++++++------- .../components/prompts/kinds/CPromptInput.vue | 22 ++++++---- lib/vue/src/components/prompts/kinds/base.vue | 5 ++- 4 files changed, 44 insertions(+), 27 deletions(-) diff --git a/client/web/workflow/src/components/Configurator/Function.vue b/client/web/workflow/src/components/Configurator/Function.vue index 982c727d54..5da69221ea 100644 --- a/client/web/workflow/src/components/Configurator/Function.vue +++ b/client/web/workflow/src/components/Configurator/Function.vue @@ -132,7 +132,7 @@ @input="$root.$emit('change-detected')" @search="searchWorkflows" /> - +
-

+

({}), }, }, @@ -33,8 +34,8 @@ export default { return this.payload[k] } - return { '@type': defType, '@value': defValue} - } + return { '@type': defType, '@value': defValue } + }, }, }