fix: dataset params default error (#2210)
Some checks are pending
Build FastGPT images in Personal warehouse / build-fastgpt-images (push) Waiting to run

This commit is contained in:
Archer 2024-07-30 17:58:40 +08:00 committed by GitHub
parent cc6fa4207a
commit c129874d59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,7 +55,7 @@ const SelectDatasetParam = ({ inputs = [], nodeId }: RenderInputProps) => {
setData((state) => ({
...state,
// @ts-ignore
[input.key]: input.value || state[input.key]
[input.key]: input.value ?? state[input.key]
}));
}
});