File tree 1 file changed +0
-5
lines changed
ui/src/workflow/nodes/mcp-node
1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 70
70
<script setup lang="ts">
71
71
import { cloneDeep , set } from ' lodash'
72
72
import NodeContainer from ' @/workflow/common/NodeContainer.vue'
73
- import NodeCascader from ' @/workflow/common/NodeCascader.vue'
74
73
import { computed , onMounted , ref } from ' vue'
75
74
import { isLastNode } from ' @/workflow/common/data'
76
75
import applicationApi from ' @/api/application'
77
- import { randomId } from ' @/utils/utils'
78
76
import { t } from ' @/locales'
79
- import { copyClick } from ' @/utils/clipboard'
80
77
import DynamicsForm from ' @/components/dynamics-form/index.vue'
81
78
import type { FormField } from ' @/components/dynamics-form/type'
82
79
83
80
const props = defineProps <{ nodeModel: any }>()
84
81
85
- const typeOptions = [' string' , ' num' , ' json' ]
86
- const showicon = ref (false )
87
82
const dynamicsFormRef = ref ()
88
83
89
84
You can’t perform that action at this time.
0 commit comments