File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
components/ai-chat/component/chat-input-operate
workflow/nodes/condition-node Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -467,7 +467,7 @@ const switchMicrophone = (status: boolean) => {
467467 }
468468}
469469
470- const TouchEnd = (bool : Boolean ) => {
470+ const TouchEnd = (bool ? : Boolean ) => {
471471 if (bool ) {
472472 stopRecording ()
473473 recorderStatus .value = ' STOP'
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ import type { FormInstance } from 'element-plus'
161161import { ref , computed , onMounted , nextTick } from ' vue'
162162import { randomId } from ' @/utils/utils'
163163import { compareList } from ' @/workflow/common/data'
164- import { type DraggableEvent , type UseDraggableReturn , VueDraggable } from ' vue-draggable-plus'
164+ import { VueDraggable } from ' vue-draggable-plus'
165165
166166const props = defineProps <{ nodeModel: any }>()
167167const form = {
@@ -238,8 +238,8 @@ const validate = () => {
238238 })
239239}
240240
241- function onEnd(evt : DraggableEvent ) {
242- const { oldIndex, newIndex, clonedData } = evt
241+ function onEnd(event ? : any ) {
242+ const { oldIndex, newIndex, clonedData } = event
243243 if (oldIndex === undefined || newIndex === undefined ) return
244244 const list = cloneDeep (props .nodeModel .properties .node_data .branch )
245245
You can’t perform that action at this time.
0 commit comments