diff --git a/frontend/src/components/main/NodeItem.vue b/frontend/src/components/main/NodeItem.vue index 6474a18..0e4cb8b 100644 --- a/frontend/src/components/main/NodeItem.vue +++ b/frontend/src/components/main/NodeItem.vue @@ -205,7 +205,7 @@ export default defineComponent({ */ const varName =(node:IActionNode)=>{ const prop = node.actionProps.find((prop) => prop.props.name === "verName"); - return prop?.props.modelValue; + return prop?.props.modelValue.name; }; const copyFlow=()=>{ context.emit('copyFlow', props.actionNode); diff --git a/frontend/src/components/right/InputText.vue b/frontend/src/components/right/InputText.vue index a14e06d..b47a379 100644 --- a/frontend/src/components/right/InputText.vue +++ b/frontend/src/components/right/InputText.vue @@ -1,10 +1,7 @@