mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 04:06:18 +00:00
fix 4.9.6 (#4631)
* fix debug quote list * delete next text node match * fix extract default boolean value * export latest 100 chat items * fix quote item ui * doc * fix doc
This commit is contained in:
@@ -103,7 +103,7 @@ export async function dispatchContentExtract(props: Props): Promise<Response> {
|
||||
|
||||
// auto fill required fields
|
||||
extractKeys.forEach((item) => {
|
||||
if (item.required && !arg[item.key]) {
|
||||
if (item.required && arg[item.key] === undefined) {
|
||||
arg[item.key] = item.defaultValue || '';
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user