mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: api input bug
This commit is contained in:
parent
d85801fe58
commit
1c6b0f8a86
|
|
@ -172,7 +172,7 @@ const isAPIInput = computed(
|
||||||
)
|
)
|
||||||
const showUserInputContent = computed(() => {
|
const showUserInputContent = computed(() => {
|
||||||
return (
|
return (
|
||||||
(((isUserInput.value || isAPIInput) && firsUserInput.value) || showUserInput.value) &&
|
(((isUserInput.value || isAPIInput.value) && firsUserInput.value) || showUserInput.value) &&
|
||||||
props.type !== 'log'
|
props.type !== 'log'
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue