mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-14 13:46:02 +08:00
fix: tools edit modal schema edit issue (#6396)
This commit is contained in:
parent
ba181197c2
commit
929c22a4e8
@ -87,9 +87,9 @@ const EditCustomCollectionModal: FC<Props> = ({
|
||||
return
|
||||
}
|
||||
(async () => {
|
||||
const customCollection = getCustomCollection()
|
||||
try {
|
||||
const { parameters_schema, schema_type } = await parseParamsSchema(debouncedSchema)
|
||||
const customCollection = getCustomCollection()
|
||||
const newCollection = produce(customCollection, (draft) => {
|
||||
draft.schema_type = schema_type
|
||||
})
|
||||
@ -97,6 +97,7 @@ const EditCustomCollectionModal: FC<Props> = ({
|
||||
setParamsSchemas(parameters_schema)
|
||||
}
|
||||
catch (e) {
|
||||
const customCollection = getCustomCollection()
|
||||
const newCollection = produce(customCollection, (draft) => {
|
||||
draft.schema_type = ''
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user