mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-25 17:22:55 +00:00
fix: Fixed interface parameter transmission not displaying during debugging (#2969)
This commit is contained in:
parent
b1f6092620
commit
b5b09dc8b4
|
|
@ -162,7 +162,10 @@ const initialApiFormData = ref({})
|
|||
const isUserInput = computed(
|
||||
() =>
|
||||
props.applicationDetails.work_flow?.nodes?.filter((v: any) => v.id === 'base-node')[0]
|
||||
.properties.user_input_field_list.length > 0
|
||||
.properties.user_input_field_list.length > 0 ||
|
||||
(props.type === 'debug-ai-chat' &&
|
||||
props.applicationDetails.work_flow?.nodes?.filter((v: any) => v.id === 'base-node')[0]
|
||||
.properties.api_input_field_list.length > 0)
|
||||
)
|
||||
const showUserInputContent = computed(() => {
|
||||
return ((isUserInput.value && firsUserInput.value) || showUserInput.value) && props.type !== 'log'
|
||||
|
|
|
|||
Loading…
Reference in New Issue